ScriptX打印功能在IE8中不起作用

时间:2015-03-12 09:49:39

标签: javascript internet-explorer-8

我需要打印文档,我正在使用ScriptX来实现此目的。 一切正常,并在IE11中打印文档。但在IE8中,我收到错误,错误:属性'$'的值为null或未定义,而不是Function对象。

我的打印代码如下所示

function PrintFunctionality(url, title,data)
{  

  if (!!navigator.userAgent.match(/Trident\/7\./)) {

        //alert('ie browser');
        var printWindow = window.open('', '', 'height=400,width=800');
        var htmltext = '<html><head><title>' + title + '</title>';
        htmltext += "<object id='factory' style='display:none' classid='clsid:1663ed61-23eb-11d2-b92f-008048fdd814' codebase='http://localhost/smsx.cab#Version=7,5,0,20'></object>";
        htmltext += "<script src='http://localhost/jquery-1.8.2.min.js'></script>";
        htmltext += "<script src='http://localhost/meadco-scriptx-1.0.2.js' type='text/javascript'></script>";
        htmltext += "<script type='text/javascript'>";
        htmltext += "$(function () {";
        htmltext += "if (MeadCo.ScriptX.Init()) {MeadCo.ScriptX.PrintPage(false);}});</script>";
        htmltext += '</head><body>';
        htmltext += data;
        htmltext += '</body></html>';
        printWindow.document.write(htmltext);
        printWindow.document.close();
        printWindow.focus();
        printWindow.print();
        printWindow.close();

        return false;
    }
};

我系统中安装的脚本x版本是:

ScriptX的已安装版本为:7.5.0.20

安装的安全管理器版本为:7.5.0.20

Print组件的安装版本为:7.5.0.20

要为IE8工作的代码有什么改变吗?

1 个答案:

答案 0 :(得分:0)

背景 - 存在许多问题:

  1. 如图所示的打印功能将无法运行,因为IE 8是Trident v4
  2. 代码假设document.close()上的行为是同步的 - 事实并非如此。脚本文件的加载和ScriptX的初始化都不是同步的。当调用printWindow.close()时,浏览器可能仍在下载内容和/或运行启动代码,并在有机会开始打印之前杀死窗口。这与IE11一起使用是因为所有内容都在缓存中,而且它正在“快速”机器上使用。
  3. jQuery在这种情况下没有正确初始化(证明:删除对ScriptX和脚本的所有引用,只留下jQuery包含和$(function(){}}); - 即使使用jQuery 1.3,它仍然是错误的
  4. 代码正在尝试两次打印文档 - 通过MeadCo.ScriptX.PrintPage()和printWindow.print()。
  5. 在这种情况下,jQuery和meaco-scriptx-1.0.2没有任何实际好处。

    这是一个临时窗口,应该可以假设已经安装了ScriptX。使其在任何版本的IE中都可以使用的答案/更改是老去学校:

    function PrintFunctionality(url, title, data) {
        var printWindow = window.open('', '', 'height=400,width=800');
        var htmltext = '<html><head><title>' + title + '</title>';
        htmltext += "<object id='factory' style='display:none' classid='clsid:1663ed61-23eb-11d2-b92f-008048fdd814'></object>";
        htmltext += "<" + "script type='text/javascript'>";
        htmltext += "function printDocument() { window.setTimeout('window.close()',3000); factory.printing.print(false); }</" + "script>";
        htmltext += "</head><body onload='printDocument()'>";
        htmltext += data;
        htmltext += '</body></html>';
        printWindow.document.write(htmltext);
        printWindow.document.close();
        return false;            
    }
    

    请注意,窗口自行关闭,并且在延迟被认为足够长以使打印完成(假脱机)之后。这种情况的一个怪癖是,在调用factory.printing.print()之前必须调用window.setTimeout(),否则可能不会触发超时。