prints.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>打印二维码</title>
  6. <input id="btnPrint" type="button" value="打印" onclick="javascript:window.print();" />
  7. <input id="btnPrint" type="button" value="打印预览" onclick=preview(1) />
  8. <style type="text/css" media=print>
  9. .noprint{display : none }
  10. </style>
  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. prnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));//从结束代码向前取html
  21. window.document.body.innerHTML=prnhtml;
  22. window.print();
  23. window.document.body.innerHTML=bdhtml;
  24. } else {
  25. window.print();
  26. }
  27. }
  28. </script>
  29. <script src="__PUBLIC__/html/jquery-1.11.3.min.js"></script>
  30. <script>
  31. jQuery(function($){
  32. $("#closeButton").click(function(){
  33. window.close();
  34. })
  35. });
  36. </script>
  37. </head>
  38. <body>
  39. <a id='closeButton' title='Close' href="#" >关闭</a>
  40. <!-- 打印startprint与endprint之间的内容-->
  41. <!--startprint1-->
  42. <div style="margin: 0 auto;text-align: center;width: 60mm; height: 60mm;"><img style="width: 60mm;" src="http://zt-iot.com/ztxf/Public/QRcode/20180202173248-7.png" alt="" /></div>
  43. <div style="margin: 0 auto;text-align: center;width: 60mm; height: 60mm;"><img style="width: 60mm;" src="http://zt-iot.com/ztxf/Public/QRcode/20180202173248-7.png" alt="" /></div>
  44. <div style="margin: 0 auto;text-align: center;width: 60mm; height: 60mm;"><img style="width: 60mm;" src="http://zt-iot.com/ztxf/Public/QRcode/20180202173248-7.png" alt="" /></div>
  45. <!--endprint1-->
  46. <!-- <div style="margin: 0 auto;text-align: center;width: 60mm; height: 60mm;"><img style="width: 45mm;" src="/ztxf/Public/QRcode/20180118174333-10.png" alt="" />
  47. <b style="float: left;"> 上海市芙蓉江路533号2楼210室</b></div> -->
  48. </body>
  49. </html>