gpt4 book ai didi

javascript - 如何正确使用jsPDF库

转载 作者:IT王子 更新时间:2023-10-29 02:49:50 27 4
gpt4 key购买 nike

我想将我的一些 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);
});

出于测试目的,但我收到:

"Cannot read property '#smdadminbar' of undefined"

其中 #smdadminbar 是正文中的第一个 div。

最佳答案

您可以使用 html 中的 pdf,如下所示,

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

<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.2/jspdf.min.js"></script>

or download locally

第二步:添加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>

Refer to the original tutorial

See a working fiddle

关于javascript - 如何正确使用jsPDF库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16858954/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com