如何删除数据表上的表头

问题描述 投票:0回答:1

enter image description here

我在如何删除从数据表中导出的“数据导出”单元格时遇到问题。

这是我的数据表配置:

$('#example').DataTable({
    dom: 'Bfrtip',
    buttons: [
        {
            extend: 'excelHtml5',
            text: 'Download Excel',
            title: 'Data export'
        }
    ],
    "autoWidth": false,
    "columns": [
        { "width": "20%" },
        { "width": "20%" },
        { "width": "20%" },
        { "width": "10%" },
        { "width": "15%" },
        { "width": "15%" }
    ]
});
javascript html jquery datatable
1个回答
0
投票

从 Excel 按钮中删除标题选项。这样它就不会在导出的 Excel 工作表中添加标题。

© www.soinside.com 2019 - 2024. All rights reserved.