我正在向 div 内的跨度添加点击事件。此事件的目标将变为可见,它是一个 div 内的第一个 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 非常重要。
任何帮助将非常感激。