2013-10-09 72 views
0

我在phonegap應用程序中有一個div,並希望它是加載更多類型無限加載。 如何做到這一點? CSS:如何應用加載更多Scrollable div

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

scroll load more

回答

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

刪除通用!完成。感謝您的輸入。 – abksharma