如何使用jQuery在pdf中显示bootstrap div值?

时间:2018-06-27 14:25:50

标签: c# jquery html asp.net-mvc

我需要将div元素值保存到pdf文件中。当我使用以下代码下载其pdf文件但未正确显示对齐方式时。 我的代码是:

function ExportToPDF(divName) {
    var pdf = new jsPDF('p', 'pt', 'letter');
    pdf.addHTML($('#responseTimeList')[0], function () {
        pdf.save('ResponseTimeReport.pdf');
    });
}

Div元素值为 enter image description here

将pdf文件保存为上述内容,但我的输出为以下 enter image description here 请给出任何显示正确格式的想法。

0 个答案:

没有答案