我不知道我做错了什么。我有这样的普通表:
<table id="table_list_values">
<thead>
<tr>
<th>
Seq
</th>
<th>
Order
</th>
<th>
Code
</th>
<th>
Description
</th>
<th>
Label Code
</th>
</tr>
</thead>
</table>
没什么不正常的。然后,填充数据表,一旦我按下按钮(而不是在其他任何东西之前),我就必须进行 ajax 调用。这给我返回了很多数据,但看看表格是如何显示的:
我该怎么做才能让它分页?这是我尝试过的:
“b 分页:”
$('#ListValues').dataTable( {
"bPaginate": true
} );
“bLengthChange”
$('#ListValues').dataTable( {
"bLengthChange": false
} );
注:全部包在$(document).ready(function(){....})
我有另一个表可以正常工作,只需添加$("#Mytable").dataTable();
我做错了什么?如果还有其他需要,请告诉我。