DataTables 初探
官网https://www.datatables.net/examples/index
方法累计
获取Table
var t = $('#example').DataTable();
增加行
t.row.add( [ 第一列数据, 第二列数据, ... ] ).draw( false );
3.增加编号栏
var t = $('#example').DataTable( {
...
"order": [[ 1, 'asc' ]]
} );