简单的问题,简单的要点,在 SO 中找不到答案。当用户滚动到 div 的底部时,下面的 javascript 函数会发出警报。我有很多 div,但我只希望在滚动 div id=imageloc 时运行警报。
$(window).scroll( function() {
if ( document.documentElement.clientHeight + $( document ).scrollTop() >= document.body.offsetHeight ) {
if (this.id == "imageloc" ) {
alert("bottom of the page.");
}
}
});