以下用于打印表的js代码不支持介质打印

时间:2015-06-26 10:32:35

标签: javascript html css printing

我想添加css媒体来格式化(添加page-break-inside ...)要打印的页面,但是下面的代码只是弹出新窗口并打印出来 表没有支持媒体打印css。

以下是我从以下链接获得的代码:

How to use HTML to print header and footer on every printed page of a document?

<script>
 function printDiv()
 {
    var divToPrint=document.getElementById('tableToPrint');
    newWin= window.open("");
    newWin.document.write(divToPrint.outerHTML);
    newWin.print();
    newWin.close();
 }
</script>

0 个答案:

没有答案