-4
<?php wp_enqueue_script('jquery'); ?>
<script>
jQuery(document).ready(function() {
// ajax pagination
jQuery('#navigation a').live('click', function() { // if not using wp_pagination, change this to correct ID
var link = jQuery(this).attr('href');
// #main is the ID of the outer div wrapping your posts
jQuery('#main').html('<div><img src="images/loader.gif"></div>');
// #entries is the ID of the inner div wrapping your posts
jQuery('#main').load(link + ' #entry')
});
}); // end ready function
</script>
而不是隻寫文本,插入loader.gif圖像可能嗎?設置loader.gif而不是文本。這可能嗎?
你在發佈的代碼中遇到什麼問題? –
你想問什麼? –
@RuneFSi增加了而不是原始文本,但img不會加載 –