DataTables - 设置显示的分页链接数

时间:2017-04-05 17:27:42

标签: jquery pagination datatables

使用DataTables,如何设置显示的分页链接数?如下面的屏幕截图所示,我想将按钮限制为只有几个,以防止这么长。

enter image description here

我确信这是可能的,我只是不确定甚至可以选择设置它的选项。我宁愿只显示FIRST,PREVIOUS,1,2..29,NEXT,LAST

$.fn.DataTable.ext.pager.numbers_length = 7;

它不起作用。

1 个答案:

答案 0 :(得分:2)

这就是你要找的东西:

enter image description here

http://live.datatables.net/biyoqesi/98/edit

$(document).ready( function () {
  $.fn.DataTable.ext.pager.numbers_length = 4;
  var table = $('#example').DataTable({"pagingType": "full_numbers"});
} );