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

html局部打印

时间:2016-12-23 13:56:30      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:div   print   pen   rem   页面   click   http   app   com   

html页面局部打印的小栗子

只要修改点击打印的按钮和打印的div区域的id就行啦

<!DOCTYPE html>
<html>
<head>
  <title>print test page</title>
  <meta charset="utf-8">
  <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.js">
</script>
<script type="text/javascript">
//貌似要jq 1.6版本以上才支持prop函数
  $(document).ready(function(){
    var print_click = "print"; //打印的按钮的id
    $("#" + print_click).bind("click", function(){
      var print_id = "print_content"; //要打印的div的id
      var k = $("#" + print_id).prop("outerHTML");
      $("body *").hide();
      $("body").append(k);
      window.print();
      $("body *").show();
      $("body #" + print_id + ":last").remove()
    })
  })
</script>
</head>
<body>
<div>
  <div>不需要打印</div>
  <div id="print_content">打印的内容</div>
  <button id="print">打印</button>
</div>
</body>
</html>

  

html局部打印

标签:div   print   pen   rem   页面   click   http   app   com   

原文地址:http://www.cnblogs.com/LoongKo/p/6214415.html

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