js控制打印页眉页脚日期网站

Posted leegj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js控制打印页眉页脚日期网站相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<title>打印</title>
<meta charset="utf-8">
<style>
.printBox {
width: 300px;
height: 300px;
border: 1px solid blue;
}
</style>
<!-- 打印的样式-->
<style media="print">
@page {
size: auto;
margin: 0mm;
}
</style>
</head>

<body>
<div class="printBox">
this is content!!!<br>
点击按钮打印
</div>
<button onclick=‘print_page()‘>打印</button>
</body>

<script type="text/javascript">
function print_page() {
if (!!window.ActiveXObject || "ActiveXObject" in window) { //是否ie
remove_ie_header_and_footer();
}
window.print();
}

function remove_ie_header_and_footer() {
var hkey_path;
hkey_path = "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\PageSetup\\";
try {
var RegWsh = new ActiveXObject("WScript.Shell");
RegWsh.RegWrite(hkey_path + "header", "");
RegWsh.RegWrite(hkey_path + "footer", "");
} catch (e) {
}
}
</script>
</html>

 

 

上面是用js控制 

还可以直接在打印页面设置就行了技术分享图片

 











































以上是关于js控制打印页眉页脚日期网站的主要内容,如果未能解决你的问题,请参考以下文章

jquery.jqprint-0.3.js打印功能 以及页眉页脚设置显示与否

打印网页上的页眉和页脚如何设置

从打印页面禁用浏览器特定的页眉和页脚

js 客户端打印html 并且去掉页眉页脚

浏览器如何设置打印页面的页眉页脚

js:打印页面且自定义页眉页脚