後,這是我工作的項目。如果你點擊BLOGS on my site,那麼帖子會顯示。現在,如果您點擊帖子,該帖子的完整視圖將會顯示。但是,由於我在博客文章頁面上應用了簡單分頁,所以完整的文章視圖只能在第一頁上使用。以下是分頁循環:功能不會執行分頁
jQuery('#Pagination a').live('click', function(e) { //check when pagination link is clicked and stop its action.
e.preventDefault();
var link = jQuery(this).attr('href'); //Get the href attribute
jQuery('#pcontent').fadeOut(500, function() { //fade out the content area
jQuery("#loader").show(); // show the loader animation
}).load(link + ' #pcontent', function() {
jQuery("#loader").hide();
jQuery('#pcontent').fadeIn(500, function() { //load data from the content area from paginator link page that we just get from the top
//hide the loader
});
});
});
全頁面瀏覽後進行簡單的jQuery顯示隱藏(隱藏一切,顯示詳細的職位)。
你知道嗎,你只需要編寫'jQuery'在其漫長的形式一次?通過將代碼封裝在'(function($){....})(jQuery);'中,無論是否使用了noConflict,都可以使用'$'。 – ThiefMaster
不,我沒有。我對jQuery相當陌生,但是從現在開始肯定會實現這個方法。 – AnAspiringCanadian