我有一个像下面这样的HTML。我想选择最接近具有文本笔记本电脑的跨度的h3
.
.
.
.
.
<div>
<div>
<h3>
<a href="https://example2.com">test1</a>
</h3>
</div>
<div>
<h3>
<a href="https://example1.com">test3</a>
</h3>
<div>
<div></div>
<span>......laptop is need .......</span>
</div>
</div>
<div>
<h3>
<a href="https://example3.com">test3</a>
</h3>
<span>......laptop in .......</span>
</div>
.
.
.
我正在尝试选择最接近h3
文字span
的所有laptop
我试过
$("span:contains('laptop')").closest("h3")