我需要使用jquery进行检查如果用户在元素的底部附近滚动。我有一个名为wrapper with overflow:scroll的元素,我可以找到的解决方案是关于entite文档。如何在与身体不同的元素中进行检查
答案 0 :(得分:0)
var wantedElementBottom = $("#wanted-element").offset().top + $("#wanted-element").height();
$(window).scroll(function(){
if($(window).scrollTop() === wantedElementBottom) {
alert('im here')//do something
})
})