在jquery数据表中滚动

时间:2014-06-20 13:46:23

标签: jquery jquery-datatables

您好如何在jQuery数据表中捕获滚动事件?

我没有" bServerSide"

我已经尝试过了:

$(".dataTables_scrollBody").scroll(function(){
    console.log("scroll");
});

$("#idOfMyTable").scroll(function(){
    console.log("scroll");
});

我该如何做到这一点?

1 个答案:

答案 0 :(得分:0)

$('.dataTables_scrollBody').on( 'scroll', function (e) { 

正在运作,我只是没有把它放在我的文件中......