使用css print屬性實現(xiàn)強(qiáng)制分頁功能的時候一定要記得打印的內(nèi)容外層只有一個容器 ,外層有兩個div容器,打印的時候css print屬性就不起任何作用。
<html lang="en">
<head>
<meta charset="UTF-8">
<title>打印 </title>
<script type="text/javascript">
function Print(){
window.print();
}
</script>
</head>
<body>
<div><input type="button" value="打印" onclick="Print()" /></div>
<div id="page1">
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="page-break-after:always" >
<tr><td>第一頁打印內(nèi)容</td></tr>
</table>
</div>
<div id="page2">
<table width="100%" border="0" cellpadding="0" cellspacing="0" id="content" >
<tr><td>第二頁打印內(nèi)容</td></tr>
</table>
</div>
</body>
</html>