我在我的html表中使用了datadables.net分页。我想在分页中隐藏/删除1 2 3 ...按钮,并且只有下一个和上一个按钮。
是否可能像做分页符号一样:false,(类似代码中的这种简单改变)?
我的职能: -
$('#pagination').DataTable( {
"pagingType": "full_numbers",
"iDisplayLength": 2,
"bFilter": false
} );
答案 0 :(得分:1)
你必须设置......
"pagingType": "full",
在这里你可以找到所有可能的组合......
https://datatables.net/reference/option/pagingType
我希望它有所帮助
答案 1 :(得分:1)
您有4个选项:
simple - 'Previous' and 'Next' buttons only
simple_numbers - 'Previous' and 'Next' buttons, plus page numbers
full - 'First', 'Previous', 'Next' and 'Last' buttons
full_numbers - 'First', 'Previous', 'Next' and 'Last' buttons, plus page numbers
So in your case :
$('#pagination').DataTable( {
"pagingType": "simple",
"iDisplayLength": 2,
"bFilter": false
} );