我使用jspdf将表从html导出为PDF,但是我的表看起来搞砸了:
这是我在html中的表格:
最后,这是我的代码:
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文档来解决,这个文档几乎不存在出口表格,我真的绝望,任何帮助表示赞赏。
谢谢:)