javascript高级程序设计(二)navigator.plugin浏览器插件检测

//检测ie中的插件
 function hasIEPlugin(){

try{
    new ActiveXObject(name);
    return true;
}catch(e){
    return false;
  }
}
alert(hasIEPlugin("QuickTime.QuickTime"));
  • 其他浏览器
function hasPlugin(){
    name = name.toLowerCase();
    for(var i = 0; i<navigator.plugins.length; i++){
        if(navigator.plugins[i].name.toLowerCase().indexOf(name)>-1){
 return true
        }

    }
 return false;
}
alert(hasPlugin("fLASH"));
alert(hasPlugin("quicktime"));

你可能感兴趣的:(javascript高级程序设计(二)navigator.plugin浏览器插件检测)