Javascript:在Window.print()之后清空html div内容

时间:2012-10-10 07:05:58

标签: javascript google-chrome printing

点击按钮,我正在使用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来测试我的代码&我只想去镀铬。

6 个答案:

答案 0 :(得分:2)

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

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

setTimeout("document.getElementById('print_div').innerHTML = ''",5000);

答案 1 :(得分:2)

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

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();
    };

答案 2 :(得分: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事件。

答案 3 :(得分: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;
    }

答案 4 :(得分: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();

答案 5 :(得分:-1)

setTimeout(function(){printWindow.document.close();
 printWindow.print();}, 500);

它会起作用