您好如何在jQuery数据表中捕获滚动事件?
我没有" bServerSide"
我已经尝试过了:
$(".dataTables_scrollBody").scroll(function(){
console.log("scroll");
});
$("#idOfMyTable").scroll(function(){
console.log("scroll");
});
我该如何做到这一点?
答案 0 :(得分:0)
$('.dataTables_scrollBody').on( 'scroll', function (e) {
正在运作,我只是没有把它放在我的文件中......