2011-12-07 65 views
0

在WordPress jQuery選擇,我創建的帖子預覽內一個div,像爲PHP生成的類

<div class="postbox"> 
<h2><a class="showhide" href="<?php the_permalink(); ?>" rel="<?php the_ID(); ?>"><?php the_title(); ?></a></h2> 
<div class="post-<?php the_ID(); ?>"></div> 
</div> 

現在,我想爲內心的DIV一個jQuery選擇。

我已經定義

var post_url = $(this).attr("href"); 
var post_id = $(this).attr("rel"); 

來完成類似

$(".post-"[post_id]).html("loading..."); 

,但它不工作。

回答

2

您的Javascript字符串連接已關閉。請嘗試:

$(".post-" + post_url).html("loading..."); 
+0

那簡單;)謝謝! – sonia