1. 程式人生 > >jqprint列印外掛簡單應用

jqprint列印外掛簡單應用

1.引入jqprint.js

<script src="js/jquery.jqprint-0.3.js" type="text/JavaScript"></script>

2.設定列印區域

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

3.列印按鈕

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

4.js 函式

<script>
      $(".print").click(function(){
        $(".my_show").jqprint();
    }); 
</script>