我正在使用jquery.columnfilters.js,我正在寻找兼容的表格分页。
我尝过了tableorter& tablepager + jquery.columnfilters.js没有成功
答案 0 :(得分:1)
我终于找到了一个与jquery.columnfilters.js合作的人 jquery.tablePager-1.1.js这是非常基本但工作正常。
http://slashjquery.com/tablepager/index.html#examples
这是我的代码:
$(document).ready(function() {
$('table#filterTable') .columnFilters({wildCard:'*',notCharacter:'?', excludeColumns:[7]}) .tablePager();
});
我猜其他寻呼机可以正常工作,但我没有找到添加到现有代码的正确方法。