写在前面
今天的开发遇到了使用window.print()功能进行当前页面打印的功能,因为页脚左边部分显示了url,这是不能存在的,已解决,写在这里。
正文
很多网上的方法都是不能用的,最后我找到一个使用css控制布局去掉页眉页脚的方法
<style media="print">
@page {
size: auto; /* auto is the initial value */
margin: 0mm; /* this affects the margin in the printer settings */
}
</style>
最后
亲测,谷歌,ie都解决