3

单击按钮时,我使用window.print()javascript 打印print_div内容,

但由于一些安全问题,我想避免多次打印(如使用 Cntrl + P)选项,所以我想清除print_div内容,用户不能一次又一次地重新打印。

这里的粗略代码,

document.getElementById("print_div").innerHTML = //Some contents to be printed on paper.
window.print()
document.getElementById("print_div").innerHTML = '' // Clearing old contents to avoid mis-use

但是这段代码根本不起作用,它print_div在创建打印预览之前清除内容,就像在 chrome 中一样。(我猜,异步工作)

谁能告诉我,这里哪里做错了?

注意:我正在Chrome: 22.0.1229.92 m用来测试我的代码,我只想使用 chrome。

4

6 回答 6

3

这是因为没有加载打印窗口。

var showPrintWindow = function (context) {
        var printWindow = window.open('', '');
        var doc = printWindow.document;
        doc.write("<html><head>");
        doc.write("<link href='/css/printReport.css' rel='stylesheet' type='text/css' media='print' />");
        doc.write("</head><body>");
        doc.write(context);
        doc.write("</body></html>");
        doc.close();

        function show() {
          if (doc.readyState === "complete") {
              printWindow.focus();
              printWindow.print();
              printWindow.close();
          } else {
              setTimeout(show, 100);
          }
        };
        show();
    };
于 2015-01-30T20:22:10.223 回答
2

您可以使用 setTimeout 方法并尝试一下。

setTimeout("your code or function etc",mili seconds)

setTimeout("document.getElementById('print_div').innerHTML = ''",5000);
于 2012-10-10T07:11:50.317 回答
1

您正在 print_div 中打印,下一步您将清除它。因此它显示为空。您可以将打印数据存储在变量中。然后在 print_div 中显示,就可以清除变量了。

var print = "";
print += "<p>Something </p><br/>";
print += "<table><tr><td>Something</td><td>Something</td></tr> 
                <tr><td>Something</td><td>Something</td></tr> </table>";
document.getElementById("print_div").innerHTML = print;
print = "";

像这样的东西。将此 javascript 设置为按钮 onsubmit 事件。

于 2012-10-10T07:22:15.993 回答
1

在 Chrome 中遇到了与您类似的问题,它在打印预览中显示空白页。尝试使用 setTimeout 但它没有用。起作用的是window.onload。

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

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

javascript:

    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;
    }
于 2016-10-06T21:07:47.307 回答
0

我不会选择 setTimeout,它只有在用户立即确认打印时才会起作用,你不能盲目地假设..

我会做类似以下的事情:

var html = "<html><head></head><body>" + $("print_div").html() + "</body></html>";
var newWindow= window.open("", "PrintWindow",  
"width=100,height=50,top=50,left=50,toolbars=no,scrollbars=yes,status=no,resizable=yes");  
newWindow.document.writeln(html);  
newWindow.document.close();  
newWindow.focus();  
newWindow.print();  
newWindow.close(); 

然后执行你的擦拭

$('print_div').clear();
于 2012-10-10T07:22:29.237 回答
0
setTimeout(function(){printWindow.document.close();
 printWindow.print();}, 500);

它会起作用的

于 2016-03-22T09:01:54.533 回答