我想用类'x'对我的数据表中的每个项目调用一个函数,但它只适用于第一个数据表页面......
如何在分页数据表中使用类“x”对每个 td 应用函数?
我建议将单击事件绑定到 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));
});
});
});
为什么不使用行回调: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
}
}
} );
} );
这是一个例子