Jquery发现div是否在滚动时到达底部

时间:2014-01-19 01:16:27

标签: php jquery html css content-management-system

我无法完成这项工作,问题是什么?

$("#scrollingbox").scroll(function() { //detect page scroll

    if($("#scrollingbox").scrollTop() + $("#scrollingbox").height() == $("#scrollingbox").height())  //user scrolled to bottom of the page?
    {
            //do something
        }
 }

发生的事情是我需要再次向上滚动才能检测到它到达底部。

1 个答案:

答案 0 :(得分:5)

http://jsfiddle.net/collabcoders/v2RbN/1/

$("span").hide();

$(".box").scroll(function() {
    if($(this).scrollTop() + $(this).innerHeight() >= $(this)[0].scrollHeight) {
        $("span").show();    
    } else {
        $("span").hide();
    }
})