DataTables 初探

官网https://www.datatables.net/examples/index

方法累计

  1. 获取Table

     var t = $('#example').DataTable();
    
  2. 增加行

     t.row.add( [
         第一列数据,
         第二列数据,
         ...
     ] ).draw( false );      
    

3.增加编号栏

    var t = $('#example').DataTable( {
        ...
        "order": [[ 1, 'asc' ]]
    } );

Comments