4

ajax呼び出しの後にスクリプトを再度実行する方法はありますか?

私はこのように呼び出すphotoswipe(ライトボックス)jqueryプラグインを持っています:

jQuery(document).ready(function($){

    if( $('.img-frame a').length > 0 ){

        var myPhotoSwipe = $(".img-frame a").photoSwipe();

     }
});

また、ajaxの「さらに投稿を読み込む」機能があります。明らかに、photoswipeは、最初のページの読み込み後に読み込まれた画像を対象としません。

私はajaxの知識があまりありませんが、これについて何か助けはありますか?ありがとう

更新:「さらに読み込む」スクリプトは次のとおりです。

jQuery(document).ready(function($) {

    // The number of the next page to load (/page/x/).
    var pageNum = parseInt(djwd_load_posts.startPage) + 1;

    // The maximum number of pages the current query can return.
    var max = parseInt(djwd_load_posts.maxPages);

    // The link of the next page of posts.
    var nextLink = djwd_load_posts.nextLink;

    /**
     * Replace the traditional navigation with our own,
     * but only if there is at least one page of new posts to load.
     */
    if(pageNum <= max) {
        // Insert the "More Posts" link.
        $('#content')
            .append('<div class="lp-placeholder-'+ pageNum +'"></div>')
            .append('<p id="lp-load-posts" class="long-button"><a href="#">Load More Posts<i class="icon-chevron-down icon-large"></i></a></p>');

        // Remove the traditional navigation.
        $('#nav-below').remove();
    }


    /**
     * Load new posts when the link is clicked.
     */
    $('#lp-load-posts a').click(function() {

        // Are there more posts to load?
        if(pageNum <= max) {

            // Show that we're working.
            $(this).text('Loading posts...');

            $('.lp-placeholder-'+ pageNum).load(nextLink + ' .post',
                function() {

                    $( this ).hide().fadeIn(700);

                    // Update page number and nextLink.
                    pageNum++;
                    nextLink = nextLink.replace(/\/page\/[0-9]?/, '/page/'+ pageNum);

                    // Add a new placeholder, for when user clicks again.
                    $('#lp-load-posts')
                        .before('<div class="lp-placeholder-'+ pageNum +'"></div>')

                    // Update the button message.
                    if(pageNum <= max) {
                        $('#lp-load-posts a').text('Load More Posts');
                    } else {
                        $('#lp-load-posts a').text('No more posts to load.');
                    }
                }
            );
        } else {
            $('#lp-load-posts a').append('.');
        }   

        return false;
    });
});

私はWordpressのfunctions.phpで次のように呼んでいます:

 function djwd_ajax_load_init() {
    global $wp_query;

    if( !is_singular() ) {
        wp_enqueue_script('ajax-load-posts', get_template_directory_uri() . '/js/ajax-load-posts.js', array('jquery'), true );

        $max = $wp_query->max_num_pages;
        $paged = ( get_query_var('paged') > 1 ) ? get_query_var('paged') : 1;

        wp_localize_script(
            'ajax-load-posts',
            'djwd_load_posts',
            array(
                'startPage' => $paged,
                'maxPages' => $max,
                'nextLink' => next_posts($max, false)
            )
        );
    }
 }
 add_action('template_redirect', 'djwd_ajax_load_init');
4

6 に答える 6

2

それを関数に入れ、pageloadとajax呼び出しで呼び出します。

function setMyPhotoSwipe() {
    var $targets = $('.img-frame a').not('.photo-swipe');

    if($targets.length > 0 ){
        $targets.addClass('photo-swipe').photoSwipe();
    };
};

jQuery(document).ready(function($){
    setMyPhotoSwipe();
});

ちなみに、変数myPhotoSwipeが必要ない場合は、設定する必要はありません。また、$('.img-frame a')2回使用しているため、結果をキャッシュします。

そしてあなたのロードコール:

$('.lp-placeholder-'+ pageNum).load(nextLink + ' .post',
            function() {

                $( this ).hide().fadeIn(700);

                // Update page number and nextLink.
                pageNum++;
                nextLink = nextLink.replace(/\/page\/[0-9]?/, '/page/'+ pageNum);

                // Add a new placeholder, for when user clicks again.
                $('#lp-load-posts')
                    .before('<div class="lp-placeholder-'+ pageNum +'"></div>')

                // Update the button message.
                if(pageNum <= max) {
                    $('#lp-load-posts a').text('Load More Posts');
                } else {
                    $('#lp-load-posts a').text('No more posts to load.');
                }

                // New content has been loaded and insertet, so set up photo swipe
                setMyPhotoSwipe();
            }
        );
于 2012-12-14T12:54:28.293 に答える
2

プラグインの委任はありません。プラグインを組み込むのは作成者のプラグイン次第です。不正行為をしない理由:(申し訳ありませんが、コードをテストできず、photoSwipeプラグインに関連するかどうかわかりません)

jQuery(document).ready(function($){

    $(this).on('mousedown','.img-frame a',function(){ //document or better parent container// mousedown or any relevent event use by photoSwipe
          if(!$(this).data('swiped')) {
              $(this).data('swiped',true).photoSwipe();
          }
    });

});
于 2012-12-14T13:00:15.893 に答える
1
$.ajax({
    url: 'url/test.php',
    success: function(data) { // also gets response from php and can be manipulated if required!
        setMyPhotoSwipe();
    }
});
于 2012-12-14T12:56:52.543 に答える
0

私は以下を提案します

 jQuery(document).ready(InitializeSettings);

ajax呼び出しでも同じように呼び出します

  ajax_success_function(){ // depends on your ajax call
   InitializeSettings();
  }


  function InitializeSettings(){

    if( $('.img-frame a').length > 0 ){
       var myPhotoSwipe = $(".img-frame a").photoSwipe();
     }
  }
于 2012-12-14T12:55:09.103 に答える
0

モーフィアスが言ったように。

その中にコードを入れる別の関数を作成します。

あなたはあなたの中でその関数を呼び出すことができます$(document).ready()

次に、同じ関数をajaxサクセスパスで使用します(ドキュメントを確認してください:http://api.jquery.com/jQuery.ajax/)。

または、これを使用することもできます:http: //api.jquery.com/ajaxStop/

これにより、すべてのAjax呼び出しが停止したときに同じ機能を使用できるようになります。

于 2012-12-14T12:55:14.890 に答える
0

申し訳ありませんが、私はjqueryの初心者です... ajaxComplete()を使用するのはどうですか

http://api.jquery.com/ajaxcomplete/

ajax呼び出しの後に関数を実行する必要があったら...そしてajaxComplete()がトリックを実行しました...

$(document).ready(function(){

  function some_function()
  {
  //---- this function to be called after ajax request...
  }

  $( document ).ajaxComplete(function() {

    some_function();

  });
})
于 2014-06-03T07:49:30.710 に答える