我正在使用tablesorter http://www.pengoworks.com/workshop/jquery/tablesorter/tablesorter.htm作为我的动态html表,我遇到了paginations的问题,因为它仍然保留了初始化的分页值。
点击一下按钮,我需要删除表格上的插件(Tablesorter的分页和排序),然后在我获得数据包后重新绑定插件。
如何绑定和重新绑定tablesorter插件。 unbinding会释放插件中的所有初始化值吗?
这将停用数据插件的保留并创建一组新数据。
P.S:我确实有办法找出新的表行可用于应用插件的时间,只是不确定绑定解绑部分
答案 0 :(得分:0)
对tablesorter.pager.js文件进行了此更改,以获取我需要去的地方。
$(config.cssNext,pager).unbind('click');
$(config.cssPrev,pager).unbind('click');
$(config.cssFirst,pager).unbind('click');
$(config.cssLast,pager).unbind('click');
代码在此之前。
$(config.cssFirst,pager).click(function() {
moveToFirstPage(table);
return false;});