我使用 jQuery 已经有一段时间了,但似乎无法理解这个...
我有一个这样的 HTML 布局:
<div id="wrapper">
<div class="accordionButton">
<h2 class="profiletitles">Requested <?php $count = 0; ?></h2>
<span class="trainingHeaderCount"></span>
</div>
<span class="postCount">12</span>
</div>
我正在尝试<span class="trainingHeaderCount"></span>
用<span class="postCount">12</span>
.
到目前为止,我所拥有的是:
$('span.trainingHeaderCount').html($(this).parent().parent().find('.postCount').html());
但它没有将任何内容加载到 DIV 中。这可能与滥用“this”有关,但不确定..
谢谢