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 增加行号的主要内容,如果未能解决你的问题,请参考以下文章
找不到文件'dataTables/jquery.dataTables' Rails 4
如何在 jQuery.DataTables init 上禁用排序?
Javascript jQuery插件DataTables取消选择元素