web-dev-qa-db-ja.com

無限スクロール手動トリガー

うまくいかないようです... : それについてもっと苦情を見てきましたが、答えが見つかりません。

問題:無限スクロールは機能しますが、手動トリガーは機能しません。リンクをクリックしても何も起こりません。 Firebugは

---(無限スクロール

私のコード:

_    <?php echo ('<ul id="infinite">'); ?>
<?php 
$wp_query = new WP_Query();
$wp_query->query('paged='.$paged.'&cat=5&showposts=3&meta_key=video_video&orderby=meta_value&order=ASC'  . $post->ID);
while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<?php if ( get_post_meta($post->ID, 'video_video', true) ) : ?>
    <li class="video"><?php $home = array("h" => 290, "w" => 380, "zc" => 1, "q" =>100);
            //echo get('video_video');
            echo ('With: ');
            echo get('participant_first_name');
            echo ('&nbsp;');
            echo get('participant_last_name');
            echo ('</li>');?>

<?php endif;?>


<?php endwhile;?>

<?php if (get_post_meta($post->ID, 'video_video', true) ) { ?>
    <?php if ($wp_query->max_num_pages > 1) : ?>
        <nav id="nav-below" >
        <div id="next" >
        <?php next_posts_link( __( 'Scroll down for more', 'intowntheme' ) ); ?></div>
        </nav>
    <?php endif; //end nav ?>
<?php } else {  ?>
<p>There are no interviews at the moment </p>
<?php }   ?>     
</ul>     
_

そして私のスクリプト:

_jQuery('ul#infinite').infinitescroll({ 
    navSelector  : "#next",  // selector for the paged navigation (it will be hidden)
    nextSelector : "#next a",   // selector for the NEXT link (to page 2)
    itemSelector : "ul#infinite li",  // selector for all items you'll retrieve
    errorCallback: function() { 
          // fade out the error message after 2 seconds
          $('#infscr-loading').animate({opacity: 0.8},2000).fadeOut('normal');   
        },   
    loading         : {
         msgText: "<em>Loading the next year of Grantees...</em>",
        finishedMsg: "<em>You've reached the end of the Interviews.</em>"
    },
  });

  //kill scroll binding
    jQuery(window).unbind('.infscr');
    //setTimeout("jQuery('#next').slideDown();", 1000);
     //hook up the manual click guy.

    jQuery('#next a').click(function(){
        jQuery('#next a').infinitescroll('retrieve.infscr');
     return false;
    });
_

また試しました

_jQuery(document).trigger('retrieve.infscr');
_

の代わりに

_jQuery('#next a').infinitescroll('retrieve.infscr');
_

しかし運がない。

次にFirebugはtrigger(retrieve.infscr) called incorrectlyと言います

15
inTOWN

Pfoe、それを見つけました...長生きする良いドキュメント(このプラグインではありません!)

これ:

 jQuery('#next a').click(function(){
    jQuery('#next a').infinitescroll('retrieve.infscr');
 return false;
});

次のようになります:

jQuery('#next a').click(function(){
    jQuery('ul#infinite').infinitescroll('retrieve');
 return false;
});

最大の問題は、そこにあるべきではない.infscrでした。それが他の誰かを助けることを願っています。

ドキュメントのようなソリューション:

jQuery("#clickable_element").click(function(){
    jQuery('#main_content_container').infinitescroll('retrieve');
        return false;
});

注:
石積みまたは同位体を使用している場合は、それを機能させるために 手動トリガー動作 を追加する必要がある場合があります。 infinitescrollの後にmanual-trigger.jsを含め、プラグインを呼び出すときにbehavior: 'Twitter'を渡すことで動作を渡します。

53
inTOWN

初めてクリックした後にナビゲーションリンクが表示されるように、次の調整を行いました。

jQuery("#clickable_element").click(function(){
    jQuery('#main_content_container').infinitescroll('retrieve');
    jQuery('#pagination').show();
    return false;
});
1
Divot

多分... $( '#next a')。click(); ?

0