如何正确使用jsPDF库

我想转换我的一些div到PDF,我试过jsPDF库,但没有成功。 看来我不明白我需要导入什么使图书馆工作。 我已经通过例子,我仍然无法弄清楚。 我已经尝试了以下内容:

<script type="text/javascript" src="js/jspdf.min.js"></script> 

jQuery和之后:

 $("#html2pdf").on('click', function(){ var doc = new jsPDF(); doc.fromHTML($('body').get(0), 15, 15, { 'width': 170 }); console.log(doc); }); 

出于testing目的,但我收到:

 "Cannot read property '#smdadminbar' of undefined" 

其中#smdadminbar#smdadminbar中的第一个div。

你可以使用PDF格式如下,

第1步:将以下脚本添加到标题

 <script src="ajax/libs/jspdf/1.3.2/jspdf.min.js"></script> 

或在本地下载

第2步:添加HTML脚本来执行jsPDF代码

定制这个来传递标识符,或者只是把#content改成你需要的标识符。

  <script> function demoFromHTML() { var pdf = new jsPDF('p', 'pt', 'letter'); // source can be HTML-formatted string, or a reference // to an actual DOM element from which the text will be scraped. source = $('#content')[0]; // we support special element handlers. Register them with jQuery-style // ID selector for either ID or node name. ("#iAmID", "div", "span" etc.) // There is no support for any other type of selectors // (class, of compound) at this time. specialElementHandlers = { // element with id of "bypass" - jQuery style selector '#bypassme': function (element, renderer) { // true = "handled elsewhere, bypass text extraction" return true } }; margins = { top: 80, bottom: 60, left: 40, width: 522 }; // all coords and widths are in jsPDF instance's declared units // 'inches' in this case pdf.fromHTML( source, // HTML string or DOM elem ref. margins.left, // x coord margins.top, { // y coord 'width': margins.width, // max width of content on PDF 'elementHandlers': specialElementHandlers }, function (dispose) { // dispose: object with X, Y of the last line add to the PDF // this allow the insertion of new lines after html pdf.save('Test.pdf'); }, margins ); } </script> 

第3步:添加您的身体内容

 <a href="javascript:demoFromHTML()" class="button">Run Code</a> <div id="content"> <h1> We support special element handlers. Register them with jQuery-style. </h1> </div> 

请参阅原始教程

看到一个工作小提琴

你只需要这个链接jspdf.min.js

它拥有一切。

 <script src="ajax/libs/jspdf/1.3.2/jspdf.min.js"></script> 

这终究是对我来说(并触发了一个处置):

 function onClick() { var pdf = new jsPDF('p', 'pt', 'letter'); pdf.canvas.height = 72 * 11; pdf.canvas.width = 72 * 8.5; pdf.fromHTML(document.body); pdf.save('test.pdf'); }; var element = document.getElementById("clickbind"); element.addEventListener("click", onClick); 
 <h1>Dsdas</h1> <a id="clickbind" href="#">Click</a> <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.3/jspdf.min.js"></script> 

你不应该也使用jspdf.plugin.from_html.js库吗? 除了主库(jspdf.js)之外,还必须使用其他库来执行“特殊操作”(如使用jspdf.plugin.addimage.js来使用图像)。 检查https://github.com/MrRio/jsPDF

首先,你必须创build一个处理程序。

 var specialElementHandlers = { '#editor': function(element, renderer){ return true; } }; 

然后在点击事件中写下这段代码:

 doc.fromHTML($('body').get(0), 15, 15, { 'width': 170, 'elementHandlers': specialElementHandlers }); var pdfOutput = doc.output(); console.log(">>>"+pdfOutput ); 

假设你已经声明了docvariables。 然后你有保存这个PDF文件使用文件插件。