zoukankan      html  css  js  c++  java
  • 一个在浏览器端将html 转为pdf 的js 插件 jsPDF

    <!DOCTYPE html>
    <html>
    <head>
        <title>test</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <script src="https://code.jquery.com/jquery-git.js"></script>
        
        <script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.4.1/html2canvas.js"></script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.0.272/jspdf.debug.js"></script>
        
    </head>
    
        
    <body>
        <p class="pdf-wrapper" ="to-pdf">HTML content...<h1>中文</h1>
            中国,汉字,测试:合同 模版 中国中国中国中国中国中国中国中国中
    国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中
    国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国
    </br>
    中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中
    国中国中国中国中国中国中国中国中国中国中国中国中国中国中国中国....................
    <br/> 中国,汉字,测试:合同 模版 ...................<br/> 计费 接口 ....................<br/> <img src='Icon-60@2x.png'/> </p> <script type="text/javascript"> var pdf = new jsPDF('p','pt','a4'); pdf.internal.scaleFactor = 1; var options = { pagesplit: true }; //$('.pdf-wrapper') pdf.addHTML(document.body,options,function() { pdf.save('web1111.pdf'); }); </script> </body> </html>
  • 相关阅读:
    python学习永久存储和异常处理
    python学习os文件系统模块
    python学习文件
    python学习集合
    python学习字典
    python学习递归
    python学习函数
    python学习序列
    js加入收藏
    判断dataset和datareader中是否存在某列
  • 原文地址:https://www.cnblogs.com/xuezizhenchengxuyuan/p/6023409.html
Copyright © 2011-2022 走看看