Home > Web Front-end > JS Tutorial > body text

JS implementation of converting html to pdf function code sharing

小云云
Release: 2018-02-06 14:05:58
Original
1247 people have browsed it

This article mainly introduces the function of converting html to pdf implemented by JS, and analyzes the specific operation skills of converting HTML format data into pdf based on the browser plug-in jsPDF in the form of a complete example. Friends in need can refer to it. I hope Can help everyone.

The example in this article describes the function of converting html to pdf implemented by JS. Share it with everyone for your reference, the details are as follows:


<!DOCTYPE html>
<html>
<head>
 <title>jsPDF插件</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=&#39;http://www.jb51.net/images/logo.gif&#39;/>
 </p>
 <script type="text/javascript">
  var pdf = new jsPDF(&#39;p&#39;,&#39;pt&#39;,&#39;a4&#39;);
  pdf.internal.scaleFactor = 1;
  var options = {
    pagesplit: true
  };
  //$(&#39;.pdf-wrapper&#39;)
  pdf.addHTML(document.body,options,function() {
   pdf.save(&#39;web1111.pdf&#39;);
  });
 </script>
</body>
</html>
Copy after login

Running effect:

Related recommendations:

Looking for a solution to convert html to pdf Chinese with all question marks


The above is the detailed content of JS implementation of converting html to pdf function code sharing. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!