我试图制作一个非常简单的脚本来在 wordpress 中加载页面 -
<script>
jQuery(document).ready(function(){
// ajax pagination
jQuery('.navigation a').live('click', function(){ // wp pagination link on default theme
var link = jQuery(this).attr('href');
// #content is the content wrapper
jQuery('#content').append('<div><h2>Loading...</h2></div>');
// .entry is a single post wrapper
jQuery('#content').append(link+'.entry')
});
}); // end ready function
</script>
也试过:
jQuery('#content').load(link+'.entry')
和
//tried also .load.ajax and prepend.ajax
jQuery('#content').prepend.ajax({
url: link,
});
不知何故,它们都工作相同,我确实看到了一个“正在加载”的 div,但随后页面被新帖子刷新了 - 我似乎无法将它附加到末尾,或者我需要的 div..