0

我正在为 jquery 使用数据表插件,并向我的表中添加了一些点击处理程序,但这些只是为我的表的第一页创建的。当我转到下一页时,这些行没有点击处理程序。所以我想我每次进入下一页时都需要添加点击处理程序。

我不知道按下下一页按钮时我该怎么做,因为这个按钮的点击动作来自插件。如何添加自定义操作?谢谢

4

2 回答 2

0

you should provide fnRowCallback function, and attach your handlers in it. This function will get called for each row before it is displayed.

Here is one general example on fnRowCallback

于 2012-10-19T12:05:51.287 回答
0

请使用下面的代码来处理分页点击事件

$('#table_instance').bind('page', function () {
//call some function here

});

于 2013-03-10T03:18:21.910 回答