码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2018-09-04 13:49:09      阅读:459      评论:0      收藏:0      [点我收藏+]

标签:idt   use   style   remove   fun   inter   setup   doc   xpl   

<!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控制打印页眉页脚日期网站

标签:idt   use   style   remove   fun   inter   setup   doc   xpl   

原文地址:https://www.cnblogs.com/leegj/p/9583618.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!