VBScript GetRef 函数
GetRef 函数允许您把 VBScript 子程序连接到页面上的一个 DHTML 事件。
语法
Set object.event=GetRef(procname)
参数 | 描述 |
---|---|
object | 必需。事件所关联的 HTML 对象的名称。 |
event | 必需。要与函数绑定的事件的名称。 |
procname | 必需。与 HTML 事件关联的 Sub 或 Function 过程的名称。 |
实例
<button id="myBtn">Click me</button>
<script type="text/vbscript">
document.getElementById("myBtn").onclick=GetRef("mySub")
Sub mySub()
alert("Hello world")
End Sub
</script>
<script type="text/vbscript">
document.getElementById("myBtn").onclick=GetRef("mySub")
Sub mySub()
alert("Hello world")
End Sub
</script>
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com