调用windows.print()方法实现打印
在页面上添加“打印”按钮,然后增加如下代码:
<input type="button"οnclick="window.print()"value="print">
这种方法代码简单、方便快捷、无需任何设置,但页面上别的元素也会被打印处理,页头和页尾的格式难以控制,无法实现“打印设置”和“打印预览”等功能,可以利用css中的Media
<style
.Noprint{display:none;}
.PageNext{page-break-after:
</style>
在不想打印的页面元素添加:
<table width="757"
<tr
<td height="133" align="center" valign="top">
<img src="Images/test.jpg" width="757" height="133"></td>
</tr>
</table>
此时<tr class="noprint">是不打印的tr。