当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript GetRef 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript GetRef 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 188 ::
收藏到网摘: n/a

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 过程的名称,该过程与事件关联。

实例1

Function test()
dim txt
txt="GetRef Test" & vbCrLf
txt=txt & "Hello World!"

MsgBox txt
End Function
Set Window.Onload=GetRef("test")

评论 (0) All

登陆 | 还没注册?