如何应用加载更多Scrollable div

时间:2013-10-09 10:12:05

标签: javascript jquery html html5 cordova

我在phonegap应用程序中有一个div,并希望它是加载更多类型无限加载。 怎么做? CSS:

#containerReviews ,#container, #containerReviewsPageSummary ,#moreList, #boxofficeList{
    float:left; width:20%; background-color: white; overflow-y:scroll; overflow-x:hidden;
}

scroll load more

1 个答案:

答案 0 :(得分:0)

$('#containerReviews ,#container, #containerReviewsPageSummary ,#moreList, #boxofficeList').scroll(function () {
    if ((this.scrollHeight - $(this).scrollTop() - $(this).height()) <= 100) {
        LoadRefreshedDataPerPage();
    }
});