Html 转 PDF

JS 方法

<style>
    .no-print {
        cursor:pointer;
    }

    @media print {
        .no-print, .no-print * {

            display: none !important;
        }
    }
</style>

<script>
    function printHtml() {
        window.print();
    }
</script>


<div style="text-align:center">
    <img class="no-print" src="${staticContextPath}/img/print.png" onclick="printHtml()"/>
</div>
<br>

wkhtmltox

wkhtmltopdf [index.html | www.baidu.com] result.pdf
posted @ 2022-01-25 09:22  LiuChengloong  阅读(37)  评论(0编辑  收藏  举报