VBScript GetRef 函数

定义和用法

GetRef 函数可把一段 VBScript 过程(子程序)连接到页面的一个 DHTML 事件上。

语法

  1. Set object.event=GetRef(procname)
参数 描述
object 必需的。事件所关联的对象的名称。
event Required. 要与函数绑定的事件的名称。
procname Required. 与事件关联的 Sub 或 Function 过程的名称。

实例

  1. Function test()
  2. dim txt
  3. txt="GetRef Test" & vbCrLf
  4. txt=txt & "Hello World!"
  5. MsgBox txt
  6. End Function
  7.  
  8. Window.Onload=GetRef("test")