2

jquery.dataTables.min.js用于分页。默认一页显示 10 个数据。我想对显示 20、30 个数据的页面进行排序。

如何更改单页显示的数据数量?

4

2 回答 2

3

尝试使用

"iDisplayLength" : yourValue

假设您需要显示 25 条记录,然后使用:

$(document).ready(function() {
$('#example').dataTable( {
"sPaginationType": "full_numbers",
"iDisplayLength" : 25
} );
});
于 2012-11-27T09:12:10.860 回答
2

你可以使用这样的东西

$(document).ready(function() {
                $('#myTable').dataTable({
                                    "aLengthMenu": [
            [25, 50, 100, 200, -1],
            [25, 50, 100, 200, "All"]
        ], 
                                    "iDisplayLength" : 50 
                                });
            } );
于 2013-03-21T11:35:30.340 回答