0

当用户接近水平可滚动 div 的末尾时,我需要通知。

我知道页面滚动条末尾的通知可以这样实现:

$(window).scroll(function() {
  if (document.body.scrollHeight - $(this).scrollTop() <= $(this).height()+500) {
     alert('near end');             
  }
});

但是在这样的可滚动水平 div 上:示例一旦用户接近可滚动区域的末端,我如何获得通知?

4

1 回答 1

1
$('.images').scroll(function () {
    if (this.scrollWidth - $(this).scrollLeft() <= $(this).width() + 500) {
        alert('near end');
    }
});

演示

于 2013-09-11T13:22:32.200 回答