jquery选择器最近,无法得到它

时间:2016-02-29 16:22:26

标签: jquery-selectors

我有一个像下面这样的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")

0 个答案:

没有答案