我想添加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>