[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[分享]自定义事件过程 getref函数

  1.    <html>
  2. <head>
  3. <hta:application id="invbs" applicationname="13" scroll="no"/>
  4. </head>
  5. <body>
  6. <input type="button" name="button1" value="load" />
  7. <script language="vbscript">
  8.   function f()
  9.     msgbox "hello world"
  10.   end function
  11.    Set button1.onclick = getref("f")
  12.   'getref 函数把定义的过程(指function过程和sub过程)绑定到一个事件。
  13. </script>
  14. </body>
  15. </html>
复制代码

返回列表