/*
* 检測是否已安装指定插件
*
* pluginName 插件名称
*/
function checkPlugins(pluginName) {
var np = navigator.plugins;
if (window.ActiveXObject) {
// IE
// ActiveXObject的对象名
var activexObjectName = pluginName + "." + pluginName;
try {
var axobj = eval("new ActiveXObject(activexObjectName);");
// 将对象转化为布尔类型
return axobj ? true : false;
} catch (e) {
return false;
}
} else if (np && np.length) {
// 非IE
for ( var i = 0; i < np.length; i++) {
if (np[i].name.toLowerCase().indexOf(pluginName.toLowerCase()) != -1)
return true;
}
return false;
} else {
// 其它则返回false
return false;
}
}