当前位置:   article > 正文

【前端】JQ插件实现打印功能_jquery 打印插件

jquery 打印插件

1、准备工作

下载三个js文件:jquery.jqprint-0.3.js、jquery-migrate-1.2.1.min.js、jquery-1.11.3.min.js,

下载地址:https://download.csdn.net/download/qq_25285531/88492425

 2、实现效果

点击“打印指导单”,调起打印机,设置打印参数,开始打印

3、实现代码

HTML代码

  1. <html>
  2. <head>
  3. <title>患者用药指导单</title>
  4. <script type="text/javascript" src="/static/js/jquery-1.11.3.min.js" ></script>
  5. <script src="/static/js/jquery.jqprint-0.3.js"></script>
  6. <script src="/static/js/jquery-migrate-1.2.1.min.js"></script>
  7. </head>
  8. <body>
  9. <!-- 打印区域 start -->
  10. <div id="printArea">
  11. <div style="line-height: 30px;">
  12. <h2 style="text-align: center; font-weight: bolder; font-size: 18px;">XXX医院</h2>
  13. <h3 style="text-align: center; font-weight: bolder;font-size: 16px;">患者用药指导单</h2>
  14. <div style="width: 97%; margin: 0 auto; height:auto; border: 1px solid #999; border-radius: 5px;">
  15. <div style="width:100%;padding:8px; border-radius: 5px;font-size:12px;display: flex;flex-wrap: wrap;">
  16. /***这里面是要打印的内容**/
  17. </div>
  18. </div>
  19. </div>
  20. </div>
  21. <!-- 打印区域 end -->
  22. <div class="" style="position: fixed; left: 0px; bottom: 0px; width: 100%; height:60px; line-height:60px; text-align: center; background: #F1F3F4;">
  23. <button type="button" class="layui-btn layui-btn-normal" onclick="onprint()" style="margin-top:10px; background:#1D99D4">打印指导单</button>
  24. </div>
  25. </body>
  26. </html>

 JS代码

  1. function onprint() {
  2. $("#printArea").jqprint();
  3. }

说明: 

1、在id为 "printArea" 的div中包含的是要打印的内容。

2、css样式必须写在行内,否则打印的时候没有样式。

3、jquery-migrate-1.2.1.min.js是为了兼容低版本的jquery ,比如 使用 1.7 版本的 jquery 却不会报错,能正常使用。 经过一番搜索,发现是因为高版本(1.9版本以后)不兼容以前的,需要引入一个 jquery-migrate.min.js 来兼容,否则会报下面的错误。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/171350
推荐阅读
相关标签
  

闽ICP备14008679号