是否可以在不使用列,数据功能的情况下获取html表的表头? 我的原因为何,因为在我的某些表字段中使用来自DB的组合数据会很复杂,例如“ 1列中有2个数据”
希望有办法。
这是我的工作代码。
let pdfName = 'Report';
var content = $('#content').html();
var doc = new jsPDF();
doc.autoTable({
didDrawPage: function() {
doc.fromHTML(content, {
'width': 2000
});
}
});
doc.autoTable({
html: '#content-table',
tableWidth: 'auto',
margin: {
right:0,
left:0,
top: 80
},
styles: {cellPadding: 0.5, fontSize: 9}
});
doc.setTextColor(100);
doc.save(pdfName + '.pdf');