jsPDF点击按钮下载标记的pdf文件

时间:2015-09-22 13:28:16

标签: jquery pdf download jspdf

我正在尝试下载我根据jsPDF文档完成的html标记的简历pdf文件。点击后,简历pdf实际上正在下载,但pdf是空白的。

JSfiddle with full code is here;我的JS函数看起来像这样:

$('.btn-download').click(function () {
    var doc = new jsPDF();
    //var source = $('#target').html();
    var specialElementHandlers = {
        '.btn-download': function (element, renderer) {
            return true;
        }
    };

    doc.fromHTML($('#content').get(0), 0.5, 0.5, {
        'width': 150,
            'elementHandlers': specialElementHandlers
    });
    doc.save("resume-cv.pdf");
});

1 个答案:

答案 0 :(得分:0)

这对我有用:

$("button").click (function() {

var doc = new jsPDF();



doc.fromHTML($('#testdiv').get(0), 30,20,{
             'width':500,

});
doc.addPage();

doc.fromHTML($('#testdiv').get(0), 30,20,{
             'width':500,

});
doc.save('Devis-Facture.pdf');

});