测试是否使用Javascript安装ActiveX控件?

时间:2010-02-01 18:03:39

标签: javascript activex

有没有办法测试是否使用Javascript安装了ActiveX控件?

3 个答案:

答案 0 :(得分:19)

function AXOrNull(progId) {
  try {
    return new ActiveXObject(progId);
  }
  catch (ex) {
    return null;
  }
}

答案 1 :(得分:9)

解决方案,尝试调用一个新的ActiveXObject:


function testForActiveX(){
    tester = null;
    try {
        tester = new ActiveXObject('htmlfile');
    }
     catch (e) {
        // catch the exception
    }
    if (tester) {
        // ActiveX is installed
        return true;
    }
    return false;
}

答案 2 :(得分:0)

   try{
      if(new ActiveXObject("Nameofplugin")){
        // write your code if plugin available
       }
      else{
       // write your code if plugin is not available
       }
    }
    catch(erro){
    //write your code if plugin is not available
    }

` 您可以从IE获取的名称 - >工具 - > ManageAddons - >检查列表并选择支持插件的名称