2

如果安装了 adobe reader 插件的客户端浏览器,我如何检查 php 或 js?

4

4 回答 4

4

试一试:http : //thecodeabode.blogspot.com/2011/01/detect-adobe-reader-plugin.html

于 2011-03-31T20:49:28.060 回答
2

您也许可以通过navigator.plugins检测到它。

于 2011-03-31T20:49:41.617 回答
2

这对我有用。

function isAcrobatReaderInstalled() {
                    var isInstalled = false;
                    if (window.ActiveXObject) {
                        var control = null;
                        try {
                            // AcroPDF.PDF is used by version 7 and later
                            control = new ActiveXObject('AcroPDF.PDF');
                        } catch (e) { }
                        if (!control) {
                            try {
                                // PDF.PdfCtrl is used by version 6 and earlier
                                control = new ActiveXObject('PDF.PdfCtrl');
                            } catch (e) { }
                        }
                        if (control)
                            isInstalled = true;
                    } else {
                        // Check navigator.plugins for "Adobe Acrobat" or "Adobe PDF Plug-in"*
    for (var i = 0; i<navigator.plugins.length; i++) 
            {   
                  var n = navigator.plugins[i].name;                              
                    if (n.indexOf('Adobe Acrobat') > -1 || n.indexOf('Adobe PDF') > -1)
                    {
                            isInstalled = true; 
                            break;
                    }
            }
                    }   
                    return isInstalled;
                }
于 2011-03-31T20:55:55.997 回答
0

Mac OS X 根本不需要 Adob​​e Reader,Safari 直接在浏览器窗口中显示它们。

不要强制使用 Adob​​e Reader,也不要强制下载文件而不仅仅是显示它。

于 2012-01-27T20:06:04.857 回答