在VBScript中实现-函数/方法名作为参数传入另一个函数
更新时间:2007年08月21日 23:29:23 作者:
在JS中有这种用法,某个函数名可以当成参数的形式,传入到另外一个函数内部去,例如:
<script type="text/javascript">
<!--
function myFuncA(str,myFuncB){
str = str + " 您好!";
str = myFuncB(str);
return str;
}
function myFuncB(str){
str = str + "欢迎来到IECN.NET";
return str;
}
alert(myFuncA("张三",myFuncB));
//-->
</script>
在VBScript有两种方式可以来实现,即用execute或GetRef 函数。
一、利用execute:
<script language=vbscript>
Function myFuncA(str,myFuncName)
str = str & " 您好!"
execute("str = " & myFuncName & "(str)")
myFuncA = str
End Function
Function myFuncB(str)
str = str + "欢迎来到IECN.NET"
myFuncB = str
End Function
msgbox myFuncA("张三","myFuncB")
</script>
二、利用GetRef:
<script type="text/vbscript">
Function myFuncA(str,myB)
str = str & " 您好!"
str = myB(str)
myFuncA = str
End Function
Function myFuncB(str)
str = str + "欢迎来到IECN.NET"
myFuncB = str
End Function
document.write(myFuncA("张三",GetRef("myFuncB")))
</script>
<script type="text/javascript">
<!--
function myFuncA(str,myFuncB){
str = str + " 您好!";
str = myFuncB(str);
return str;
}
function myFuncB(str){
str = str + "欢迎来到IECN.NET";
return str;
}
alert(myFuncA("张三",myFuncB));
//-->
</script>
在VBScript有两种方式可以来实现,即用execute或GetRef 函数。
一、利用execute:
<script language=vbscript>
Function myFuncA(str,myFuncName)
str = str & " 您好!"
execute("str = " & myFuncName & "(str)")
myFuncA = str
End Function
Function myFuncB(str)
str = str + "欢迎来到IECN.NET"
myFuncB = str
End Function
msgbox myFuncA("张三","myFuncB")
</script>
二、利用GetRef:
<script type="text/vbscript">
Function myFuncA(str,myB)
str = str & " 您好!"
str = myB(str)
myFuncA = str
End Function
Function myFuncB(str)
str = str + "欢迎来到IECN.NET"
myFuncB = str
End Function
document.write(myFuncA("张三",GetRef("myFuncB")))
</script>
相关文章
ASP 包含文件中的路径问题和使用单一数据库连接文件的解决方案
全站只需要用一个数据库连接文件的实现函数代码2009-03-03Webform 内置对象 Session对象、Application全局对象,ViewState详细介绍
这篇文章主要介绍了Webform 内置对象 Session对象、Application全局对象,ViewState的相关资料,需要的朋友可以参考下2016-09-09
最新评论