在不实例化对象的情况下检测 Internet Explorer 中的插件
通常,当您使用 VBScript 或 JavaScript 来 CreateObject 来检测插件时,用户会遇到有些“刺耳”的安全异常。
有哪些好的方法可以在不实际实例化对象的情况下检测 IE 浏览器插件?
Normally when you use VBScript or JavaScript to CreateObject to detect a plug-in, the user gets the somewhat "jarring" security exception.
What are some good ways to detect IE browser plugins without actually instantiating the object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然我不确定如何检查创建对象的情况,但您仍然可以通过使用 javascript try-catch 块来绕过安全异常。
例如:
在这种情况下,实际的错误被捕获并对用户隐藏。
While I am not sure of a way to check withing creating the object, you can still get around the security exceptions by using the javascript try-catch block.
For example:
In this case, the actual error is captured and hidden from the user.