使用jsPDF格式将HTML表格导出为PDF格式

时间:2014-06-25 17:05:10

标签: javascript php html export jspdf

我使用jspdf将表从html导出为PDF,但是我的表看起来搞砸了:PDF TABLE

这是我在html中的表格:

HTML Table

最后,这是我的代码:

function demoFromHTML() {
    var pdf = new jsPDF('p', 'pt', 'letter');

    source = jQuery('#customers')[0];

    specialElementHandlers = {
        // element with id of "bypass" - jQuery style selector
        '#bypassme': function(element, renderer) {
            // true = "handled elsewhere, bypass text extraction"
            return true
        }
    };
    margins = {
        top: 30,
        bottom: 60,
        left: 60,
        width: 700
    };

    pdf.fromHTML(
            source, 
            margins.left, 
            margins.top, {
                'width': margins.width, 
                'elementHandlers': specialElementHandlers
            },
    function(dispose) {
        pdf.save('Test.pdf');
    }
    , margins);
}

我真的很困惑为什么它不能正常工作,我已经尝试了很多东西,但似乎这只能通过jspdf文档来解决,这个文档几乎不存在出口表格,我真的绝望,任何帮助表示赞赏。

谢谢:)

0 个答案:

没有答案