Fork me on GitHub

使用js打印时去除页眉页脚

写在前面

  今天的开发遇到了使用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都解决

posted @ 2018-09-20 16:50  doMakeBetter  阅读(7877)  评论(0编辑  收藏  举报