我需要将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 请给出任何显示正确格式的想法。