检测滚动到DIV的底部

时间:2012-03-22 13:51:45

标签: jquery html scroll

我想检测到我到达div的底部 我的div是400px高度,隐藏溢出 我不知道正常高度但超过400px

我正在使用此代码,但它不起作用 任何想法?

if($("#article-txt").scrollTop() + $("#article-txt").height() == $("#article-txt")[0].scrollHeight) {
       alert("bottom!");
   }

1 个答案:

答案 0 :(得分:5)

$("#parentdiv").scroll(function(){
    if($(this)[0].scrollHeight - $(this).scrollTop() === $(this).outerHeight()) {
        alert(1);
    };
});

作品。您需要添加父div名称,而不是滚动Div本身。