无忧启动论坛
标题:
【已解决】运行 HTA 文件出错,请指教,谢谢!
[打印本页]
作者:
chishingchan
时间:
2019-6-10 21:19
标题:
【已解决】运行 HTA 文件出错,请指教,谢谢!
本帖最后由 chishingchan 于 2019-6-11 08:10 编辑
系统:XP SP3 简体中文专业版
浏览器:IE8
modaldialog.hta
<html>
<head>
<title>模态对话框</title>
<HTA:APPLICATION
APPLICATIONNAME="ModalDialog">
</head>
<script language="VBScript">
Sub CloseWindow
window.returnValue = listbox.Value
window.Close
End Sub
</script>
<body>
<select size="3" name="listbox">
<option value="1">选项 1</option>
<option value="2">选项 2</option>
<option value="3">选项 3</option>
<option value="4">选项 4</option>
</select>
<p>
<input type="button" id="idBtn" value="确定" onclick="CloseWindow">
</body>
</html>
复制代码
1.png
(16.29 KB, 下载次数: 41)
下载附件
2019-6-10 21:19 上传
运行后可以显示窗口,但当点击“确定”按钮后就出错,请问如何解决?谢谢!
刚才发现,原来这个 HTA 是被调用的:
<html>
<head>
<title>Modal Example</title>
<HTA:APPLICATION
APPLICATIONNAME="MainModal">
</head>
<script language="VBScript">
Sub ShowDialog
intReturn = ShowModalDialog("modaldialog.hta")
textbox.Value = intReturn
End Sub
</script>
<body>
<button onclick="ShowDialog">
Show Dialog Box</button> <p>
<input type="text" name="textbox">
</body>
</html>
复制代码
作者:
9zhmke
时间:
2019-6-10 21:37
没玩过,不知道你这个return是要把值返回给谁?
欢迎光临 无忧启动论坛 (http://wuyou.net./)
Powered by Discuz! X3.3