0

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

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

滚动加载更多

4

1 回答 1

0
$('#containerReviews ,#container, #containerReviewsPageSummary ,#moreList, #boxofficeList').scroll(function () {
    if ((this.scrollHeight - $(this).scrollTop() - $(this).height()) <= 100) {
        LoadRefreshedDataPerPage();
    }
});
于 2013-10-09T10:12:05.020 回答