标签:
function detectFlash() {
if (navigator.mimeTypes.length > 0) {
return navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin != null;
} else if (window.ActiveXObject) {
try {
new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
return true;
} catch (oError) {
return false;
}
} else {
//no way to detect!
return false;
}
}
if (detectFlash()){
alert("You have Flash installed.");
} else {
alert("You do not have Flash installed.");
}
标签:
原文地址:http://www.cnblogs.com/sccblog/p/4575450.html