我有一個tablesorter表,它工作正常,使用ajax方法更新表數據。我已經添加了尋呼機的tablesorter插件現在jQuery Tablesorter傳呼機插件和Ajax更新
$(.tablesorter').trigger("update");
功能,同時更新表,沒有更新其仍顯示前一行/頁數尋呼機。
我使用:
//init tablesorter
$('#tblCustomers').tablesorter({
headers: { 0: { sorter: false}},
sortList: [[5,1]]
}).tablesorterPager({container: $("#pager")});
//search listener
$('input.search').change(function() {
$.post('search.php', { 'keyword' : $(this).val() }, function(data) {
$('#tblCustomers tbody').html(data);
$('#tblCustomers').trigger('update');
}
});
建議,請...
我有同樣的問題。這可能有所幫助: http://stackoverflow.com/a/9000306/1168836 – Albertyto 2012-01-25 09:32:11