任何人都知道如何确定某个插件是否安装在用户的浏览器上?有问题的插件是AlternaTIFF。
答案 0 :(得分:2)
我相信navigator.plugins
可让您访问该信息,它包含每个插件的名称,描述和支持的mimetypes。
答案 1 :(得分:0)
AlternaTIFF有一些代码,它看起来像:http://www.alternatiff.com/testpage.html
答案 2 :(得分:0)
对于IE,只需尝试create it。
var installed = true;
try {
newObj = new ActiveXObject(YOUROBJECT.whatever);
} catch {
installed = false;
}