我正在使用jquery数据表,并且当我从数据表的下拉列表中将行数从20更改为50时。它没有显示剩余的行。
我尝试更改不同的属性,但是没有一个对我有用。
<pre class="prettyprint">
...
...
<span class="str">
"text1
text2
text3"
</span>
答案 0 :(得分:0)
尝试给定的解决方案
$("#urTable").dataTables({
"bJQueryUI":true,
"bSort":false,
"bPaginate":true,
"sPaginationType":"full_numbers",
"iDisplayLength": 10
});
答案 1 :(得分:0)
这对我有用
$('#myTable').dataTable( {
"pageLength": 25,
"lengthMenu": [ [10, 25, 50, -1], [10, 25, 50, "All"] ]
});