即時通訊嘗試使我的WordPress的鏈接加載到div而不是刷新頁面。在網上嘗試過一些教程,但他們似乎並沒有工作(或不完全)使用jquery將wordpress鏈接加載到div
我自己的試用版只會在每次提取我的最後一篇文章時(它確實會加載到div但它並不會生成其他文章,然後最後使所有的鏈接我點擊轉到同一職位。
人有一個想法,爲什麼這不工作?
非常感謝!
<?php while (have_posts()) : the_post(); ?>
<div class="WZ-OVER-wereldTitle">
<a href="<?php the_permalink(); ?>" rel="<?php the_ID(); ?>">
<?php the_title(); ?>
</a>
</div>
<script>
$(document).ready(function() {
var postID = $('.WZ-OVER-wereldTitle a').attr('rel');
$('.WZ-OVER-wereldTitle a').click(function() {
event.preventDefault();
$('#content').html('loading...');
$('#content').load('http://www.weetzelf.nl/?p=' + postID);
return false;
});
});
</script>
<?php endwhile; ?>
謝謝,我解決了這個問題,使用the_permalink爲loadedURL和the_ID選擇正確的a。 實際上現在我試圖用你的方法回到主索引頁(即時通訊不知道我是否理解ajax gd enuff atm,當我點擊一個標籤/貓並使用你的插件時,你得到了一個小技巧來使這個工作成爲可能)謝謝! –