IE:通过 javascript 询问安全设置

发布于 2024-12-29 10:15:48 字数 282 浏览 0 评论 0原文

在 IE 8 中,当我用来

new ActiveXObject("wscript.shell") 

创建 ActiveX 对象时,会出现脚本错误,指出“自动化服务器无法创建对象”。这是因为 wscript.shell 对于脚本编写来说并不安全,并且在默认安全区域中甚至不会要求用户执行。是否可以通过 javascript 向 IE 询问 ActiveX 安全设置,以便我可以避免和处理脚本错误(并向用户显示提示?)

In IE 8, When I use

new ActiveXObject("wscript.shell") 

to create an ActiveX object there will be a script error stating "Automation server can't create object". This is because the wscript.shell is not secure for scripting and in the default security zone the user is not even asked for execution. Is it possible to ask the IE via javascript for the ActiveX security settings so that i can to avoid and handle the script error (and display a hint to the user?)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨曦慕雪 2025-01-05 10:15:48

你总能捕捉到错误吗?

var shell;
try {
    shell = new ActiveXObject("wscript.shell") 
}
catch (e) {
    alert("You need to change your security settings")
}

You could always catch the error?

var shell;
try {
    shell = new ActiveXObject("wscript.shell") 
}
catch (e) {
    alert("You need to change your security settings")
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文