0

我想用类'x'对我的数据表中的每个项目调用一个函数,但它只适用于第一个数据表页面......

如何在分页数据表中使用类“x”对每个 td 应用函数?

4

2 回答 2

0

我建议将单击事件绑定到 Next/Prev 按钮,以便为每个找到的类 x 的 TD 调用一个函数

$(document).ready(function(){
    //bind the click to listen for Next/Prev buttons
    $('#next_button, #prev_button').on('click', function(){
        //loop through all available TDs with a class of x
        $('td.x').each(function(key, value){
            //implement function call
            $(this).someFunction();
            //or
            someFunction($(this));
        });
    });
});
于 2013-07-10T17:40:33.810 回答
0

为什么不使用行回调:fnRowCallback

   $(document).ready( function() {
     $('#example').dataTable( {
       "fnRowCallback": function( nRow, aData, iDisplayIndex, iDisplayIndexFull ) {
         // Bold the grade for all 'A' grade browsers
         if ($(nRow).is(".XClass") )
         {
           // execute you code here 
         }
       }
     } );
   } );

这是一个例子

于 2013-07-11T02:18:02.407 回答