table = $("#Table").DataTable({ "rowCallback": function (row, data, dataIndex) { //增加行号 $(‘td:eq(0)‘, row).html(dataIndex + table.page.info().length * table.page() + 1); }});
<table id="Table"> <thead> <tr style="text-align:center;"> <th style="text-align:center;"> 序号 </th> </tr> </thead> </table>
时间: 2024-11-06 14:44:56