js 客户端打印html 并且去掉页眉、页脚的实例

作者:风吹De麦浪 时间:2024-04-22 22:24:26 

print() 方法用于打印当前窗口的内容,支持部分或者整个网页打印。

调用 print() 方法所引发的行为就像用户单击浏览器的打印按钮。通常,这会产生一个对话框,让用户可以取消或定制打印请求。

win10下测试ie11、chrome、firefox、360、edge 都可以成功去掉页眉页脚;


<!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>

来源:http://www.cnblogs.com/CandyManPing/archive/2017/11/02/7775083.html

标签:js,打印,去掉,页眉,页脚
0
投稿

猜你喜欢

  • 详解基于python-django框架的支付宝支付案例

    2023-01-07 12:30:22
  • 使用python将图片改为灰度图或黑白图

    2023-04-17 12:28:52
  • 实例解析Python设计模式编程之桥接模式的运用

    2021-06-03 18:48:04
  • python 多进程并行编程 ProcessPoolExecutor的实现

    2023-10-23 14:41:56
  • MySQL 按指定字段自定义列表排序的实现

    2024-01-16 08:09:22
  • python3:excel操作之读取数据并返回字典 + 写入的案例

    2023-11-25 17:59:22
  • 在asp中调用sql server的存储过程方法

    2007-08-13 13:28:00
  • Vue.js -- 过滤器使用总结

    2024-05-09 10:41:28
  • SQL server中字符串逗号分隔函数分享

    2024-01-12 17:20:22
  • 从mysql读写分离着手提升服务器性能

    2024-01-22 06:56:10
  • Python字符串逐字符或逐词反转方法

    2022-12-24 21:14:45
  • 浅谈关于JS下大批量异步任务按顺序执行解决方案一点思考

    2024-05-22 10:41:23
  • PHP中isset()和unset()函数的用法小结

    2023-11-19 14:19:24
  • Go语言break跳转语句怎么使用

    2024-05-28 15:37:12
  • PHP 引用的概念

    2023-11-14 21:24:28
  • Go语言基础switch条件语句基本用法及示例详解

    2024-04-26 17:33:30
  • Python读取properties配置文件操作示例

    2021-06-10 04:20:55
  • python读取hdfs上的parquet文件方式

    2021-04-07 11:54:31
  • python备份文件的脚本

    2023-12-14 10:52:02
  • python继承threading.Thread实现有返回值的子类实例

    2023-06-07 19:01:15
  • asp之家 网络编程 m.aspxhome.com