2014-06-20 49 views
0

你好我怎樣才能捕捉jQuery數據表中的滾動事件?在jQuery數據表中滾動

我沒有 「bServerSide」

我已經嘗試:

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

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

我怎樣才能做到這一點?

+0

可能重複的:http://stackoverflow.com/questions/14418743/bind-to-on-scroll - 數據表事件 –

+0

你好,給定的解決方案在我的情況下不起作用 – gregouille

+0

什麼具體不起作用?你有沒有嘗試將'.scroll()'事件附加到'.dataTables_scrollBody'元素? –

回答

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

工作,我只是不把它放在我的文件準備...