Chrome打印空白页

时间:2015-03-16 14:21:49

标签: javascript google-chrome printing

如果用户点击缩略图,我有一个旧的javascript代码来打印图像。它过去工作得很好,但最近(仅限Chrome!)预览中有一个空白页。

以下是JsBin中的演示:http://jsbin.com/yehefuwaso/7 单击打印机图标。现在在Firefox中试试吧;它将按预期工作。

Chrome:41.0.2272.89 m

Firefox:30.0,36.0.1

function newWindow(src){

  win = window.open("","","width=600,height=600");
    var doc = win.document;
    // init head
    var head = doc.getElementsByTagName("head")[0];
    // create title
    var title = doc.createElement("title");
    title.text = "Child Window";
    head.appendChild(title);
    // create script
    var code = "function printFunction() { window.focus(); window.print(); }";
    var script = doc.createElement("script");
    script.text = code;
    script.type = "text/javascript";
    head.appendChild(script);
    // init body
    var body = doc.body;
    //image
    doc.write('<img src="'+src+'" width="300">');

    //chrome
    if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) {

      win.printFunction();               

    } else {
        win.document.close();
        win.focus();
        win.print();
        win.close();
    }
}

3 个答案:

答案 0 :(得分:4)

看起来它正在尝试在加载<img>之前进行打印,通过打开链接将调用移动到window加载事件的事件处理程序中打印作为数据URI Blob ,例如

var code = '\
    <html>\
        <head>\
            <title></title>\
            <script>\
    function printFunction() {\
        window.focus();\
        window.print();\
        window.close();\
    }\
    window.addEventListener(\'load\', printFunction);\
            </script>\
        </head>\
        <body><img src="'+src+'" width="300"></body>\
    </html>';

window.open('data:text/html,' + code, '_blank', 'width=600,height=600');

不要忘记您可能需要在code

HTML编码标记

你可能只是在<img>上听取加载,但是如果你做了比打印单个图像更复杂的事情,你可能会发现它在将来会再次出现< / p>

doc.write('<img onload="printFunction();" src="'+src+'" width="300">');

printFunction是所有浏览器的打印功能

答案 1 :(得分:3)

我在Chrome中遇到了同样的问题。您可以尝试这些方法,第一个方法适合我。 setTimeout对我不起作用(以后必须编辑)。

function printDiv(divName) {

    var printContents = document.getElementById(divName).innerHTML;
    w = window.open();

    w.document.write(printContents);
    w.document.write('<scr' + 'ipt type="text/javascript">' + 'window.onload = function() { window.print(); window.close(); };' + '</sc' + 'ript>');

    w.document.close(); // necessary for IE >= 10
    w.focus(); // necessary for IE >= 10

    return true;
}

的setTimeout:

<div id="printableArea">
      <h1>Print me</h1>
</div>

<input type="button" onclick="printDiv('printableArea')" value="print a div!" />



    function printDiv(divName) {

        var printContents = document.getElementById(divName).innerHTML;
        w = window.open();
        w.document.write(printContents);

        w.document.close(); // necessary for IE >= 10
        w.focus(); // necessary for IE >= 10

        setTimeout(function () { // necessary for Chrome
            w.print();
            w.close();
        }, 0);

        return true;
    }

答案 2 :(得分:1)

您需要等待图片完成加载:

var img = new Image();
img.src = src;
img.style.width = '300px';
img.onload = function(){
  doc.write(img);
};