在不实例化对象的情况下检测 Internet Explorer 中的插件

发布于 2024-07-19 03:11:37 字数 121 浏览 6 评论 0原文

通常,当您使用 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 技术交流群。

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

发布评论

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

评论(1

温柔女人霸气范 2024-07-26 03:11:37

虽然我不确定如何检查创建对象的情况,但您仍然可以通过使用 javascript try-catch 块来绕过安全异常。

例如:

function checkForObject() {
   try{
      var conn = new ActiveXObject('Msxml2.XMLHTTP');
      return true;
   } catch (e) {
      return false;
   }
}

在这种情况下,实际的错误被捕获并对用户隐藏。

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:

function checkForObject() {
   try{
      var conn = new ActiveXObject('Msxml2.XMLHTTP');
      return true;
   } catch (e) {
      return false;
   }
}

In this case, the actual error is captured and hidden from the user.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文