有人可以幫助我與阿賈克斯分頁請,我已經2天了,無法弄清楚。我已經加載更多風格分頁,這是代碼,preety經典(下面)。 除了當佔位符到達第10頁時,所有東西都可以用作刨削。然後,地獄破裂,沒有東西再加載了。該按鈕仍然有效,直到maxpages已到達,因此該按鈕被刪除,但超過10個佔位符沒有任何反應。我正在使用這個腳本的網站,你可以測試自己的地方是這樣的:http://filmhdonline.com/category/toate-filmele/ 我希望有人有一個ideea我在說什麼。提前致謝。wordpress ajax分頁後10頁
jQuery(document).ready(function() {
// The number of the next page to load (/page/x/).
var pageNum = parseInt(pbd_alp.startPage);
// The maximum number of pages the current query can return.
var max = parseInt(pbd_alp.maxPages);
// The link of the next page of posts.
var nextLink = pbd_alp.nextLink; pageNum++;
//Load more videos translation
var more = pbd_alp.more;
//Loading videos translation
var loading = pbd_alp.loading;
/**
* Replace the traditional navigation with our own,
* but only if there is at least one page of new posts to load.
*/
if(pageNum <= max) {
// Remove the traditional navigation.
jQuery('.pagination').remove();
// Insert the "More Posts" link.
if(jQuery('#content').find('ul.listing-videos').length == 1){
jQuery('#content ul.listing-videos').append('<li class="more-posts pbd-alp-placeholder-' + pageNum + '"></li>');
jQuery('#content').append('<p id="pbd-alp-load-posts" class="pagination"><a href="#">' + more + '</a></p>');
}
}
/**
* Load new posts when the link is clicked.
*/
jQuery('#pbd-alp-load-posts a').click(function() {
// Are there more posts to load?
if(pageNum <= max) {
// Show that we're working.
jQuery(this).text(loading);
jQuery('.pbd-alp-placeholder-'+ pageNum).load(nextLink + ' #content ul.listing-videos li',
function() {
//jQuery('.pbd-alp-placeholder-'+ pageNum).children('li').unwrap();
console.log(pageNum);
jQuery(this).children().hide();
$newContent = jQuery(this).children().unwrap();
$newContent.fadeIn('fast');
// Update page number and nextLink.
pageNum++;
nextLink = nextLink.replace(/\/page\/[0-9]?/, '/page/'+ pageNum);
**// Add a new placeholder, for when user clicks again.
jQuery('#content ul.listing-videos').append('<li class="more-posts pbd-alp-placeholder-'+ pageNum +'"></li>');**
// Update the button message.
if(pageNum <= max) {
jQuery('#pbd-alp-load-posts a').text('Vezi mai multe');
} else {
jQuery('#pbd-alp-load-posts a').remove();
}
}
);
} else {
jQuery('#pbd-alp-load-posts a').append('.');
}
return false;
});
});
這個是主題的一部分,我儘可能保持與插件的距離。 – 2014-11-05 10:27:06
@VartolomeiEduardClaudiu根據以上評論更改代碼 – 2014-11-05 10:47:10
sory,不想被粗魯,完全改變我可以隨時做的代碼,但隨後我必須重新制作主題的所有CSS,這是一種痛苦。我現在的工作是99%,問題是當你到達plaheholder 10,11,12它不再顯示任何東西。我留下了一個網址,以便您可以測試我在說什麼。我真的不想重寫代碼。雖然不是我所喜歡的,但謝謝你的回答。 – 2014-11-05 18:44:14