当页面底部滚动时,jQuery会加载更多内容

时间:2015-01-06 08:12:45

标签: javascript android jquery css scroll

当滚动到页面底部时,jQuery会加载更多内容。我的脚本在Safari / iPad浏览器和Android Mozilla浏览器上运行良好。但不适用于Android默认和Chrome浏览器。

$("#div").scroll(function() {
    if ($(this).scrollTop() >= ($(this)[0].scrollHeight - $(this).outerHeight())) {
        // load more  content function            
    }
});

1 个答案:

答案 0 :(得分:0)

试试这个

$("#div").animate({scrollTop: $("#div")[0].scrollHeight}, 1000);
    $('#div').scroll(function() {
    //content goes here
     });