当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript GetRef 函数
The GetRef function allows you to connect a VBScript procedure to a DHTML event on your pages.
GetRef 函数可返回一个指向一过程的引用,此过程可绑定某事件
Set object.event=GetRef(procname) |
参数 | 描述 |
---|---|
object | Required. The name of a DHTML object with which DHTML event is associated 必选项。事件所关联的对象的名称。 |
event | Required. The name of a DHTML event to which the function is to be bound 必选项。要与函数绑定的事件的名称。 |
procname | Required. The name of a Sub or Function procedure to be associated with the DHTML event 必选项。该字符串中包含 Sub 或 Function 过程的名称,该过程与事件关联。 |
Function test() Set Window.Onload=GetRef("test") |