无忧启动论坛

标题: 【已解决】运行 HTA 文件出错,请指教,谢谢! [打印本页]

作者: chishingchan    时间: 2019-6-10 21:19
标题: 【已解决】运行 HTA 文件出错,请指教,谢谢!
本帖最后由 chishingchan 于 2019-6-11 08:10 编辑

系统:XP SP3 简体中文专业版
浏览器:IE8

modaldialog.hta
  1. <html>
  2. <head>
  3. <title>模态对话框</title>
  4. <HTA:APPLICATION
  5.      APPLICATIONNAME="ModalDialog">
  6. </head>

  7. <script language="VBScript">
  8. Sub CloseWindow
  9.     window.returnValue = listbox.Value
  10.     window.Close
  11. End Sub
  12. </script>

  13. <body>
  14. <select size="3" name="listbox">
  15.    <option value="1">选项 1</option>
  16.    <option value="2">选项 2</option>
  17.    <option value="3">选项 3</option>
  18.    <option value="4">选项 4</option>
  19. </select>
  20. <p>
  21. <input type="button" id="idBtn" value="确定" onclick="CloseWindow">
  22. </body>
  23. </html>
复制代码




运行后可以显示窗口,但当点击“确定”按钮后就出错,请问如何解决?谢谢!

刚才发现,原来这个 HTA 是被调用的:
  1. <html>
  2. <head>
  3. <title>Modal Example</title>
  4. <HTA:APPLICATION
  5.      APPLICATIONNAME="MainModal">
  6. </head>

  7. <script language="VBScript">
  8. Sub ShowDialog
  9.    intReturn = ShowModalDialog("modaldialog.hta")
  10.    textbox.Value = intReturn
  11. End Sub
  12. </script>

  13. <body>
  14. <button onclick="ShowDialog">
  15.   Show Dialog Box</button> <p>
  16. <input type="text" name="textbox">
  17. </body>
  18. </html>
复制代码

作者: 9zhmke    时间: 2019-6-10 21:37
没玩过,不知道你这个return是要把值返回给谁?




欢迎光临 无忧启动论坛 (http://wuyou.net./) Powered by Discuz! X3.3