网页打印插件

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_37682202/article/details/82834923

需要用到的插件:jquery-migrate-1.2.1.min.js,jquery.jqprint-0.3.js 如果没有效果就加上js库文件。

网盘下载:https://pan.baidu.com/s/1ovVgfhkhpJnNxceULQlhLg

<script type="text/javascript">
$(function(){
    //页面打印
    $(".print").click(function(){
        $("#table-info").jqprint(); //需要打印哪里就在哪里加id
    });        
});
</script>

<body>    
    <button class="btn btn-danger radius print">打印</button>
    
    <table class="table table-border table-bg table-bordered" id="table-info">
      ...   
    </table>
</body>

猜你喜欢

转载自blog.csdn.net/qq_37682202/article/details/82834923