我正在使用以下脚本来加载一些 Wordpress 帖子。不幸的是,这取代了我的内容,我想附加到现有内容。
您对使用 AJAX 调用附加的建议是什么。
$('#load-posts a').click(function() {
if(pageNum <= max) {
$('#content').load(nextLink + ' article',
function() {
// Update page number and nextLink.
// Update the button message.
}
}
);
}
});
谢谢