我有代码可以像这样导出数据表pdfhtml
$('#example3').DataTable( {
dom: 'lBfrtip',
buttons: [
{
extend: 'pdfHtml5',
title: 'Data Cucian Kain Cartiva '+d,
orientation:'portrait',
download: 'open',
orientation:'landscape',
customize: function(doc) {
doc.content.forEach(function(item) {
if (item.table) {
item.table.widths = [40, 40, '*','*','*']
}
})
}
}
]
} );
怎么做?
答案 0 :(得分:1)
只需使用
customize: function(doc) {
doc.defaultStyle.alignment = 'center';
...
}
认为它解释了自己:)你的代码在jsfiddle工作 - >的 https://jsfiddle.net/ccdn6g2v/ 强>