JavaScript检测迅雷插件

By admin, 8 五月, 2021

IE浏览器检测方法如下:

function weike_utility_check_xunlei() {
  drupal_add_js('function check_xunlei() {
    var Thunder;
    try {
      Thunder = new ActiveXObject("ThunderAgent.Agent");
      alert("ThunderAgent.Agent");
    } catch(e) {
      try {
       Thunder = new ActiveXObject("ThunderServer.webThunder.1");
       alert("ThunderServer.webThunder.1");
      } catch(e) {
        try {
          Thunder = new ActiveXObject("ThunderAgent.Agent.1");
          alert("ThunderAgent.Agent.1");
        } catch(e) {
          Thunder = null;
        }      
      }    
    }
    
    if (Thunder) {
      alert("迅雷插件与下载功能冲突,请禁用浏览器的迅雷插件或使用另外的浏览器下载。");
      return false;
    }
    return true;
  }', 'inline');
}

Chrome浏览器可以通过遍历navigator.plugins寻找“XunLei”关键字。

标签

评论

Restricted HTML

  • 允许的HTML标签:<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id> <img src>
  • 自动断行和分段。
  • 网页和电子邮件地址自动转换为链接。
验证码
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.
请输入"Drupal10"