私はしばらく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には何もロードしていません。「これ」の誤用と関係があるかもしれませんが、確かではありません..
ありがとう