I have created an appliction for downloading a html table to pdf using javascript i used

Can anyone please give me some suggestion for this problem

function demoFromHTML() {

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

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

specialElementHandlers = {

'#bypassme': function (element, renderer) {

return true

}

};

margins = {

top: 4,

bottom: 4,

left: 4,

width: 522

};

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) {

pdf.save('Test.pdf');

}, margins);

}

Logo

Agent 垂直技术社区,欢迎活跃、内容共建。

更多推荐