VBScript GetRef 函數(shù)定義和用法GetRef 函數(shù)可把一段 VBScript 過程(子程序)連接到頁面的一個 DHTML 事件上。 語法Set object.event=GetRef(procname)
實(shí)例Function test() dim txt txt="GetRef Test" & vbCrLf txt=txt & "Hello World!" MsgBox txt End Function Window.Onload=GetRef("test") |
|