2012-03-22 196 views
2

我想檢測我到一個div的底部 我的div是高度400像素,具有溢出隱藏 我不知道正常的高度,但超過400像素檢測滾動到DIV的底部

我」米使用此代碼,但它不起作用 任何想法?

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

回答

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

作品。您需要添加父div名稱,而不是滾動Div本身。