2
我不能得到這個工作,是什麼問題?jquery查找div是否達到滾動底部
$("#scrollingbox").scroll(function() { //detect page scroll
if($("#scrollingbox").scrollTop() + $("#scrollingbox").height() == $("#scrollingbox").height()) //user scrolled to bottom of the page?
{
//do something
}
}
發生了什麼是我需要再次向上滾動它才能檢測到它到達底部。
scrollTop的總是> = 0。所以基本上你問如果東西總是> = 0 + X等於X,當滾動是== 0,這一條件將是真實的。 IE當沒有滾動完成。你可以看到這與檢測達到底部不同。 – Petruza