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 に答える