我的头部有一个功能,功能是 -
<script type="text/javascript">
$("#btnPrint").live("click", function () {
var divContents = $("#page-wrap").html();
var printWindow = window.open('', '', 'height=400,width=800');
printWindow.document.write('<html><head><title>DIV Contents</title>');
printWindow.document.write('</head><body>');
printWindow.document.write(divContents);
printWindow.document.write('</body></html>');
printWindow.document.close();
printWindow.print();
});
</script>
问题是在body标签和课程外网页上显示的上述功能的一部分。
这是在网页
中显示的js代码的一部分'); printWindow.document.close(); printWindow.print(); });
我在一台服务器上测试代码看起来像这样 -
<script type="text/javascript">
$("#btnPrint").live("click", function () {
var divContents = $("#page-wrap").html();
var printWindow = window.open('', '', 'height=400,width=800');
printWindow.document.write('<html><head><title>DIV Contents</title>');
printWindow.document.write('</head><body>');
printWindow.document.write(divContents);
printWindow.document.write('</body></html>');
printWindow.document.close();
printWindow.print();
});
和另一个看起来像这样的服务器代码 -
<script type="text/javascript">
$("#btnPrint").live("click", function () {
var divContents = $("#page-wrap").html();
var printWindow = window.open('', '', 'height=400,width=800');
printWindow.document.write('<html><head><title>DIV Contents</title>');
printWindow.document.write('</head><body >');
printWindow.document.write(divContents);
printWindow.document.write('<script type="text/javascript">window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","licenseKey":"2aa6bb7413","applicationID":"18758918","transactionName":"MlFbYRRZWBdSWkcPWwsbbEcPF1kWV1xBSEQNRA==","queueTime":0,"applicationTime":50,"atts":"HhZYF1xDSxk=","errorBeacon":"bam.nr-data.net","agent":""}
我不明白是什么问题。任何帮助非常感谢! 谢谢。