0

我的页面中有一个列表(#js-list-scroll),列表中的一些项目(li)有一个类'itemPage',我想要实现的是当用户滚动时,我想找到最近的' itemPage' 到滚动位置。
像这样的东西:

$(window).scrollTop().closest('.itemPage');

优素福

4

1 回答 1

2

您需要遍历所有 lis 并将位置与当前滚动位置进行比较。就像是:

var scrollTop = $(window).scrollTop();
$('li.itemPage').each(function() {
  var top = $(this).position().top;
  if (top > scrollTop) {
    // This is the first li which is visible - do something with it

    return false; // Stop the .each loop from continuing
  }
});
于 2014-08-14T11:48:39.763 回答