0

我有动态生成的表,有时它会有 100 行,有时它可能有 300 行。我希望将 tablesorterpager 放在我的表上。

当用户点击 find 重新填充表格时,我希望取消绑定或删除寻呼机操作,加载数据然后再次绑定插件。关于如何在 th tablesorterpager 操作上实现 bind -unbind 操作的任何想法。

4

2 回答 2

0

在构造函数解决我的问题之前,我将它们放在寻呼机插件中

                 $(config.cssNext,pager).unbind('click');
                 $(config.cssPrev,pager).unbind('click');
                 $(config.cssFirst,pager).unbind('click');
                 $(config.cssLast,pager).unbind('click');

“....pager.js”中的构造函数:

                $(config.cssFirst,pager).click(function() {
                    moveToFirstPage(table);
                    return false;
                });
于 2012-08-07T20:33:52.733 回答
0

I have a fork of tablesorter on Github. And the pager plugin has a method to enable, disable or completely destroy the pager plugin. Here is a demo.

Also, if it helps, there is another demo on how to use the pager plugin to use ajax data.

于 2012-07-28T13:42:45.940 回答