jquery plugins —— datatables 增加行号

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery plugins —— datatables 增加行号相关的知识,希望对你有一定的参考价值。

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>

 

以上是关于jquery plugins —— datatables 增加行号的主要内容,如果未能解决你的问题,请参考以下文章

复制DataTabe的Rows到另一个DataTable

找不到文件'dataTables/jquery.dataTables' Rails 4

如何在 jQuery.DataTables init 上禁用排序?

Javascript jQuery插件DataTables取消选择元素

使用jQuery DataTable Buttons插件不显示导出按钮

带有复选框的 JQuery DataTable 选择行