判断客户端浏览器是否安装了Flash插件

 <script>
/*检测浏览器是否安装了插件(在IE 中无效)*/
function hasPlugin(name){
name = name.toLowerCase();
for(var i=0; i<navigator.plugins.length; i++){
if(navigator.plugins[i].name.toLowerCase().indexOf(name)){
return true;
}
}
return false;
}
//alert(hasPlugin('Flash'));
//alert(hasPlugin('QuickTime')); /*检测ie中的插件*/
function hasIEPlugin(name){
try{
new ActiveXObject(name);
return true;
} catch(ex){
return false;
}
}
//检测Flash
alert(hasIEPlugin("ShockwaveFlash.ShockwaveFlash"));
//检测QuickTime
alert(hasIEPlugin("QuickTime.QuickTime")); //总结
//检测所有浏览器中的Flash
function hasFlash(){
var result = hasPlugin("Flash");
if(!result){
result = hasIEPlugin("ShockwaveFlash.ShockwaveFlash");
}
return result;
} //检测所有浏览器中的QuickTime
function hasQuickTime(){
var result = hasPlugin("QuickTime");
if(!result){
result = hasIEPlugin("QuickTime.QuickTime");
}
return result;
} </script>
上一篇:python语言程序设计2


下一篇:Linux Tcl和Expect的安装