我在使用与 wordpress 和 ajax 相关的脚本时遇到问题。我认为它的加载速度非常慢,如果我点击点击的链接,它需要完全相同的时间(不是缓存)
我正在做的是,在其他页面中加载 single.php。每次单击链接帖子时,该帖子都会通过 div 中的 Ajax 加载。
jQuery.ajax({
'url':post_link,
'type':'POST',
'beforeSend': function(){
jQuery(".container").html('<img src="ajax-loader.gif" />');
},
'success':function(results){
// some functions
}
});
任何想法这里有什么问题?