0
我有一個腳本無限滾動這與jquery 1.8.3構建,但它不能在使用jquery 3.1.1的站點上工作,我需要這個腳本來開始使用3.1.1,因爲我的站點引導模式使用3.1.1,我不能刪除3.1.1。 這裏是應用讓jquery 1.8腳本使用jquery 3.x
$(document).ready(function(){
$('#content').infinitescroll({
navSelector: "#next:last",
nextSelector: "#next:last",
itemSelector: "#content",
debug: false,
dataType: 'html',
maxPage: 6,
path: function(index) {
return "index" + index + ".html";
}
// appendCallback : false, // USE FOR PREPENDING
}, function(newElements, data, url){
// used for prepending data
// $(newElements).css('background-color','#ffef00');
// $(this).prepend(newElements);
});
});
和JS類就設在這裏 http://www.hongkiat.com/blog/infinite-page-scroll/