我需要两个数据表分页,即一个jquery插件,一个在表的顶部,一个在底部。我正在做的是:
// get the pagination generated by the plugin
var clonedPag = $("#pagination_bottom").clone();
// add this pagination to the top of table
$("#datatable_wrapper").prepend()
问题是这个新添加的分页不起作用。
任何人都可以告诉我,我做错了什么,或者我怎样才能让它发挥作用?
答案 0 :(得分:5)
你可以有多个分页。使用数据表sDom选项。
DataTables网站提供了一个示例DataTables DOM positioning - multiple instances。
或者,这是一个非常简单的例子http://jsfiddle.net/qdRDw/
$('#test').dataTable(
{
"bPaginate": true,
"sDom":'fptip'
});