我正在使用 bootpag 分页来支持我的应用程序中的分页
<div id="demo">
<?php //print_r($data);?>
</div>
<div id="page-selection"></div>
$('#page-selection').bootpag({
total: <?=$totalRows?>
}).on("page", function(event, /* page number here */ num)
{
$("#demo").html("Insert content"); // some ajax content loading...
});
分页正在工作,但所有页面都显示相同的行,我想每页设置五行,其余行应显示在下一页,如何使用 bootpag 设置每页的行数?