我使用以下腳本來加載一些WordPress的帖子。 不幸的是,這取代了我的內容,我想附加到現有的內容。JQuery追加AJAX
你對使用AJAX調用追加的建議是什麼?
$('#load-posts a').click(function() {
if(pageNum <= max) {
$('#content').load(nextLink + ' article',
function() {
// Update page number and nextLink.
// Update the button message.
}
}
);
}
});
感謝