我試圖使用jQuery Mobile的檢測scrollstart,如果我用它的工作原理如下:JQuery移動 - 我可以檢測頁面內容而不是文檔的scrollstart?
$(document).bind("scrollstart", function() {
console.log("scroll start detected");
});
但是這個日誌的時間間隔,整個頁面滾動的時間。我只想檢測頁面內容上的滾動而不是當整個頁面(文檔)滾動時。
我已經試過類似如下的各種嘗試:
$("#myContent").bind("scrollstart", function() {
console.log("scroll start detected");
});
$("#myPage").bind("scrollstart", function() {
console.log("scroll start detected");
});
但沒有我嘗試似乎除了使用文檔工作。是否有可能檢測除文檔以外的任何其他內容的scrollstart?
對不起,那是由我只是僞代碼差,在我的應用程序,他們都在 –