使用 JScript 在 WSH 中提示对话框?
如何使用 JScript 在 WSH 中打开提示对话框?
我在文档中找到的唯一弹出对话框是 WshShell.Popup() 方法。 但我需要一种方法来请求用户输入字符串,就像 DOM 中的 window.prompt() 方法一样。
谢谢。
How to open a prompt dialog box in WSH usig JScript??
The only pop-up dialog I've found in the doc is the WshShell.Popup() method. But I need a way to request the user to enter a string, like the window.prompt() method in DOM.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为 WScript 对象没有提供这样的方法,但是您可以从在 WSH 上运行的 vbscript 显示输入框。 因此,这是一种可能的解决方案,可以让您从 JS 中调用该 VB 函数! 请注意以下代码片段的文件扩展名“.wsf”。
I think the WScript object does not provide such a method however you can show an input box from vbscript running on WSH. So here is one possible solution which lets you call that VB function from within JS! Please note the file extension for the following code fragment ".wsf".
我知道这个问题已经得到解答,但我不想使用 .wsf 的东西,我也不想加载 Internet Explorer 的开销(正如我看到其他解决方案所做的那样)。 我使用 Google 找到了这个我认为最优雅的解决方案:
http://with-love-from-siberia.blogspot.com/2009/12/msgbox-inputbox-in-jscript.html
关键是使用ActiveXObject“ScriptControl”,设置将语言转换为 VBScript,然后使用 ScriptObject.eval() 函数。 该网站上的示例是独立的。
编辑:对于那些遇到 64 位或换行等错误的人,有一个改进的版本,其中包含有关如何运行它的说明(在 Win7 x64 等系统上)此处。
I know this question has been answered, but I wouldn't want to use the .wsf stuff and I also wouldn't want the overhead of loading internet explorer (as I've seen other solutions do). I found this solution using Google that I think is the most elegant:
http://with-love-from-siberia.blogspot.com/2009/12/msgbox-inputbox-in-jscript.html
The key is using the ActiveXObject "ScriptControl", setting the language to VBScript and then using the ScriptObject.eval() function. The example on the site stands on its own.
EDIT: For those encountering an error with 64 bit or line feed, etc., there's this improved version with instructions on how to run it (on systems like Win7 x64) here.