window.print() 去掉页眉页脚及打印链接
2020-12-15 本文已影响0人
氨基钠
页面中添加样式:
<style media="print">
@page {
size: auto; /* auto is the initial value /
margin: 0mm; / this affects the margin in the printer settings */
}
</style>
直接调用
window.print();
页面中添加样式:
<style media="print">
@page {
size: auto; /* auto is the initial value /
margin: 0mm; / this affects the margin in the printer settings */
}
</style>
直接调用
window.print();