1. 程式人生 > >jquery.PrintArea.js列印外掛

jquery.PrintArea.js列印外掛

1.引入jquery.js和jquery.PrintArea.js

<script src="js/jquery.js" type="text/JavaScript"></script>
<script src="js/jquery.PrintArea.js" type="text/JavaScript"></script>

2.設定列印區域

<div class="my_show">
//列印區域
</div>

3.列印按鈕

<input type="button" class="my_show" value="列印"
/>

4.js函式

$(".print").click(function(){
    $(".my_show").printArea();
});