0

我正在使用 Masonry、Will Paginate 和 Infinite Scroll 的组合。Masonry 和 Will Paginate 工作正常,但我似乎无法让 Infinite Scroll 工作。

我有一种感觉,可能是我的选择器是错误的,但在尝试了不同的变化之后我仍然一无所知。

脚本

<script type="text/javascript">
 $(function(){

    var $container = $('#container');
    $container.imagesLoaded( function(){
      $container.masonry({
        itemSelector : 'item'
      });

    });

  });

// infinitescroll() is called on the element that surrounds 
// the items you will be loading more of
  $('#container').infinitescroll({

    navSelector  : '.pagination',            
                   // selector for the paged navigation (it will be hidden)
    nextSelector : '.pagination .next_page a',    
                   // selector for the NEXT link (to page 2)
    itemSelector : '#container .item'         
                   // selector for all items you'll retrieve
    },
    // trigger Masonry as a callback
    function ( newElements ) {
        var $newElems = $( newElements );
        $container.masonry( 'appended', $newElems );
    }
  );

</script> 

导航

<div class="pagination">
<span class="previous_page disabled">← Previous</span>
     <em>1</em>
     <a href="/?page=2" rel="next">2</a>
     <a href="/?page=3">3</a>
     <a href="/?page=4">4</a>
     <a href="/?page=5">5</a>
     <a href="/?page=6">6</a>
     <a href="/?page=7">7</a>
     <a class="next_page" href="/?page=2" rel="next">Next →&lt;/a>
</div>

内容

<div id="container" class="masonry" style="position: relative; height: 0px;">
<script type="text/javascript" src="/javascripts/jquery.min.js?1329440016">
<script type="text/javascript" src="/javascripts/jquery.masonry.min.js?1327461530">
<script type="text/javascript" src="/javascripts/jquery.infinitescroll.min.js?1324335816">
<div class="item">
4

2 回答 2

0

尝试将你的无限滚动移动到里面。即,尝试以下操作:

$(function(){
...

  $('#container').infinitescroll({
    ...
  );
});

希望有帮助。

于 2012-02-24T01:00:49.423 回答
0

nextSelector需要.pagination a.next_page,不是.pagination .next_page a

于 2012-04-05T20:06:44.770 回答