在MsIE中检测Pdf阅读器

Ira*_*omo 3 internet-explorer detection pdf-viewer

当点击该IFrame中的链接时,我使用IFrame查看Pdf文档.但是,在没有阅读器的计算机上,链接将提示下载.有没有办法,相同的链接可以提示用户在检测到没有读卡器时下载阅读器?我以为我在某个地方见过这个.谢谢!

non*_*ont 5

这在IE中适用于我:

<script>
var p;
try {
p = new ActiveXObject('AcroExch.Document');
}
catch (e) {
// active x object could not be created
document.write('doesnt look like the PDF plugin is installed...');
}
if (p) {
    document.write('does look like the pdf plugin is installed!');
}
</script>
Run Code Online (Sandbox Code Playgroud)

在这里找到它...但修改删除"endif"