Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/426.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript jsPDF变量未定义_Javascript_Jspdf - Fatal编程技术网

Javascript jsPDF变量未定义

Javascript jsPDF变量未定义,javascript,jspdf,Javascript,Jspdf,我正在尝试使用jsPDF库将HTML页面转换为PDF。我已将此库包含在标题中: <script src="http://mrrio.github.io/jsPDF/dist/jspdf.debug.js"></script> 有什么特别的原因吗 编辑:里面的内容是一个包含信息的2页长的表格 <script> function demoFromHTML() { var pdf = new jsPDF('p', 'pt', 'letter');

我正在尝试使用jsPDF库将HTML页面转换为PDF。我已将此库包含在标题中:

<script src="http://mrrio.github.io/jsPDF/dist/jspdf.debug.js"></script>
有什么特别的原因吗

编辑:里面的内容是一个包含信息的2页长的表格

 <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);
}
<a href="javascript:demoFromHTML()" class="button">Run Code</a><div class="content" id="content"> CONTENT HERE </div>
TypeError: headers[j] is undefined
rowData[headers[j].name] = tableRow.cells[j].textContent.replace(/\r?\n/g, '');