在VBScript中实现函数的方法

时间:2024-07-08 12:02:44 VBScript 我要投稿
  • 相关推荐

在VBScript中实现函数的方法

  在JS中有这种用法,某个函数名可以当成参数的形式,传入到另外一个函数内部去,例如:

  在VBScript有两种方式可以来实现,即用execute或GetRef函数。

  一、利用execute:

  FunctionmyFuncA(str,myFuncName)

  str=str&"您好!"

  execute("str="&myFuncName&"(str)")

  myFuncA=str

  EndFunction

  FunctionmyFuncB(str)

  str=str+"欢迎来到IECN.NET"

  myFuncB=str

  EndFunction

  msgboxmyFuncA("张三","myFuncB")

  二、利用GetRef:

  FunctionmyFuncA(str,myB)

  str=str&"您好!"

  str=myB(str)

  myFuncA=str

  EndFunction

  FunctionmyFuncB(str)

  str=str+"欢迎来到IECN.NET"

  myFuncB=str

  EndFunction

  document.write(myFuncA("张三",GetRef("myFuncB")))

【在VBScript中实现函数的方法】相关文章:

VBScript中字节数据操作函数06-20

excel中if函数的使用方法10-24

vlookup函数在Excel中的使用方法09-21

Excel中vlookup函数使用方法02-17

excel中now函数的使用方法05-25

PHP中date函数常用时间处理方法09-13

探讨PHP函数的实现原理及性能07-07

Inventor中用函数来实现运动模拟05-22

实现硬盘raid的方法07-31

SQL中的单记录函数08-12