我在phonegap应用程序中有一个div,并希望它是加载更多类型无限加载。 怎么做? CSS:
#containerReviews ,#container, #containerReviewsPageSummary ,#moreList, #boxofficeList{
float:left; width:20%; background-color: white; overflow-y:scroll; overflow-x:hidden;
}
答案 0 :(得分:0)
$('#containerReviews ,#container, #containerReviewsPageSummary ,#moreList, #boxofficeList').scroll(function () {
if ((this.scrollHeight - $(this).scrollTop() - $(this).height()) <= 100) {
LoadRefreshedDataPerPage();
}
});