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...");
,但它不工作。
那簡單;)謝謝! – sonia