当前位置: 首页 > 工具软件 > PrintArea > 使用案例 >

jQuery打印插件 printArea

韦安顺
2023-12-01

最近项目中需要用到打印HTML页面,需要指定区域打印,使用jquery.PrintArea.js 插件 

引入jar包:

1.jquery.js

2jquery.printArea.js

用法: $("div#printmain").printArea();  


  <input type="button" id="btnPrint" value="打印"/>  
<div id="printContent">要打印的内容区域<div>  
      
<script type="text/javascript">  
$(function(){  
     $("btnPrint").click(function(){ $("#printContent").printArea(); });  
 });  
</script>  



 类似资料: