Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

On button Click I am trying to print #idThermal contents. First time it doesn't show on print preview but Second time onwards it works perfectly fine

var divContents = $("#idThermal").html();
var printWindow = window.open('', '', 'height=400,width=800');
printWindow.document.write('<html><head><title></title>');
printWindow.document.write('<link href="/Content/ThermalPrint.css" rel="stylesheet" />');
printWindow.document.write('</head><body  onload=' + printWindow + '.print(); ' + 
printWindow + '.close();>');
printWindow.document.write(divContents);
printWindow.document.write('</body></html>');
printWindow.document.close();
printWindow.print();
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
815 views
Welcome To Ask or Share your Answers For Others

1 Answer

Perhaps you mean:

var divContents = $("#idThermal").html();
var printWindow = window.open('', '', 'height=400,width=800');
var html = '<html><head><title></title>'+
 '<link href="/Content/ThermalPrint.css" rel="stylesheet" />'+
 '</head><body onload="window.focus(); window.print()">'+
 divContents+
 '</body></html>';
printWindow.document.write(html);
printWindow.document.close();

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...