div内のスパンにクリックイベントを追加しています。表示されるこのイベントのターゲットは、2div下のdiv内にある最初のdivです。DOMをトラバースして見つけるにはどうすればよいですか?
おそらく、コードでより明確になるでしょう:
<div a>
<h2>
<span id="here">Click</span>
</h2>
</div>
<div></div>
<div>
<div class="targetDiv">This is the div we need to find</div>
<div class="targetDiv">There are other divs with the same id, but we don't need to find those</div>
<div class="targetDiv">Not looking for this one </div>
<div class="targetDiv">Or this one either</div>
</div>
左右を検索しましたが、答えが見つかりません。イベントをスパン直後の最初のdivのみに制限することが重要です。
どんな助けでも大歓迎です。