我按照this教程进行操作,但如何添加否字段 autoincrement
No | date | total_sent_status|
---+-------------------+------------------+
1 |2013-12-26 00:00:00| 3 |
---+-------------------+------------------+
2 |2018-10-21 00:00:00| 3 |
---+-------------------+------------------+
注意:
记录是一个php循环不是来自数据库的记录 在我使用Ignited Datatables之前,但现在我卡住了,是否有人都有相同的 以前的经历?谢谢答案 0 :(得分:1)
您可以在初始化数据表时执行此操作。请参阅https://datatables.net/examples/api/counter_columns.html
您也可以在fnRowCallback中执行相同操作。
$(document).ready( function() {
$('#example').dataTable( {
"fnRowCallback": function( nRow, aData, iDisplayIndex, iDisplayIndexFull ) {
var index = iDisplayIndex +1;
$('td:eq(0)',nRow).html(index);
return nRow;
}
} );
} );