使用datatable插件的ajax分页

时间:2014-06-20 12:11:54

标签: php datatables jquery-pagination

我正在尝试使用datatable插件进行ajax分页。它加载第一组数据,但分页不起作用。 有人可以给我一个数据表ajax分页的好例子。 我需要知道如何设置要显示的行数。

先谢谢。

1 个答案:

答案 0 :(得分:1)

您需要创建一个AJAX端点(数据库将从此处填充表格)。

预计将从数据表中获取JSON数据。

iTotalRecords – Number of total records in the table, before applying the filters.
iTotalDisplayRecords – Number of records returned after applying the filters.
sEcho – An un-altered copy of the sEcho sent from the client.
aaData – Array of data from the server. 

请在此处阅读: http://www.sitepoint.com/working-jquery-datatables/