博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JS实现页面打印
阅读量:6710 次
发布时间:2019-06-25

本文共 2276 字,大约阅读时间需要 7 分钟。

方法多多,自己收集一下

1、js实现(可实现局部打印)

Html代码  
  1. <input id="btnPrint" type="button" value="打印" onclick="javascript:window.print();" />  
  2.   
  3. <input id="btnPrint" type="button" value="打印预览" onclick=preview(1) />  
  4. <style type="text/css" media=print>  
  5. .noprint{display : none }   
  6. </style>  
  7.   
  8.   
  9. <p class="noprint">不需要打印的地方</p>  
  10.   
  11. <script>  
  12. function preview(oper)          
  13. {   
  14. if (oper < 10)   
  15. {   
  16. bdhtml=window.document.body.innerHTML;//获取当前页的html代码   
  17. sprnstr="<!--startprint"+oper+"-->";//设置打印开始区域   
  18. eprnstr="<!--endprint"+oper+"-->";//设置打印结束区域   
  19. prnhtml=bdhtml.substring(bdhtml.indexOf(sprnstr)+18); //从开始代码向后取html   
  20.   
  21. prnhtmlprnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));//从结束代码向前取html   
  22. window.document.body.innerHTML=prnhtml;   
  23. window.print();   
  24. window.document.body.innerHTML=bdhtml;   
  25. } else {   
  26. window.print();   
  27. }   
  28. }   
  29. </script>  
  30. <p>XXXXX</p>  
  31. <!--startprint1-->要打印的内容<!--endprint1-->  
  32.   
  33. 再加个打印按纽 onclick=preview(1)   

不需要打印的地方

XXXXX

要打印的内容
再加个打印按纽 οnclick=preview(1)

 

 2、调用windows底层打印,报安全警告,不建议使用(不支持局部打印)

Html代码  
  1. <HTML>  
  2. <HEAD>  
  3. <TITLE>javascript打印-打印页面设置-打印预览代码</TITLE>    
  4. <META http-equiv=Content-Type content="text/html; charset=gb2312" />    
  5. <SCRIPT language=javascript>     
  6.   function printsetup(){     
  7.   // 打印页面设置     
  8.   wb.execwb(8,1);     
  9.   }     
  10.   function printpreview(){     
  11.   // 打印页面预览     
  12.          
  13.   wb.execwb(7,1);            
  14.          
  15.   }     
  16.   
  17.   function printit()     
  18.   {     
  19.   if (confirm('确定打印吗?')) {     
  20.   wb.execwb(6,6);    
  21.   }     
  22.   }     
  23.   </SCRIPT>    
  24. </HEAD>    
  25. <BODY>    
  26.   
  27. <DIV align=center>    
  28. <OBJECT id=wb height=0 width=0     
  29. classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 name=wb></OBJECT>    
  30. <INPUT onclick=javascript:printit() type=button value=打印 name=button_print />     
  31. <INPUT onclick=javascript:printsetup(); type=button value=打印页面设置 name=button_setup />     
  32. <INPUT onclick=javascript:printpreview(); type=button value=打印预览 name=button_show />     
  33. 一按开始的减肥了卡时间段   
  34. </DIV>    
  35. </BODY>    
  36. </HTML>   
javascript打印-打印页面设置-打印预览代码 
一按开始的减肥了卡时间段

 

3、jQuery实现(支持局部打印)

 

Html代码  
  1. <script type="text/javascript" src="jquery-1.4.2.min.js"></script>    
  2. <script type="text/javascript" src="jquery.PrintArea.js"></script>    
  3. <script>  
  4. $(document).ready(function(){   
  5.   $("input#biuuu_button").click(function(){   
  6.   
  7.   $("div#myPrintArea").printArea();   
  8.   
  9. });   
  10. });   
  11.     
  12. </script>  
  13.     
  14.   
  15.   
  16.   
  17. <input id="biuuu_button" type="button" value="打印"></input>  
  18.   
  19. <div id="myPrintArea">.....文本打印部分.....</div>   
   
.....文本打印部分.....

 

 

  • (25.7 KB)

转载地址:http://arnlo.baihongyu.com/

你可能感兴趣的文章
使用delphi 开发多层应用(十)安全访问服务器
查看>>
JavaScript计算字符串中每个字符出现的次数
查看>>
mvc中的ViewData用到webfrom中去
查看>>
[转载]java.lang.OutOfMemoryError: bitmap size exceeds VM budget解决方法
查看>>
SKY IM-A800S 驱动下载
查看>>
应用程序 数据缓存
查看>>
TFS签入签出
查看>>
第二条:遇到多个构造器参数(Constructor Parameters)时要考虑用构建器(Builder)
查看>>
成长,没你想象的那么迫切
查看>>
ASP.NET Core 中文文档 第一章 入门
查看>>
jQuery入门(2)使用jQuery操作元素的属性与样式
查看>>
贴片电阻分类、阻值、功率、封装、尺寸
查看>>
Mqtt协议IOS端移植2
查看>>
【Eclipse】eclipse中设置tomcat启动时候的JVM参数
查看>>
10.查看npm安装信息和版本号
查看>>
国际化环境下系统架构演化
查看>>
C#跟着阿笨玩一起玩异步Task实战(一)
查看>>
Sqoop-1.4.6安装部署及详细使用介绍
查看>>
oracle 存储过程 示例
查看>>
正态分布与中心极限定理
查看>>