私はこのコードを持っています:多くのボックスを表示するmansory +無限スクロールjqueryプラグイン。しかし、ページを開くと、ページの最後ではなくスクロールすると、次のコンテンツの読み込みが開始されます。私が間違っているのは何ですか?
$container.infinitescroll({ navSelector : '#page-nav', // selector for the paged navigation nextSelector : '#page-nav a', // selector for the NEXT link (to page 2) itemSelector : '.box', // selector for all items you'll retrieve // enable debug messaging ( to console.log ) loading: { finishedMsg: 'Pagine da caricare terminate.', img: 'http://i.imgur.com/6RMhx.gif' } }, // trigger Masonry as a callback function( newElements ) { // hide new items while they are loading var $newElems = $( newElements ).css({ opacity: 0 }); // ensure that images load before adding to masonry layout $newElems.imagesLoaded(function(){ // show elems now they're ready $newElems.animate({ opacity: 1 }); $container.masonry( 'appended', $newElems, true ); }); } );