jQuery - 选择标签,然后选择带有文本的子标签,然后选择同级标签

发布于 2024-11-05 10:29:20 字数 310 浏览 1 评论 0原文

我有一些看起来像这样的 html:

<dl>
    <dt>Label 1</dt>
        <dd>
            Yadda yadda yadda
        </dd>
    <dt>Label 2</dt>

我想获取“Yadda yadda yadda”的文本。我想我需要告诉 jQuery 做类似“选择标签,其中父标签是包含文本“标签 1”的标签。

执行此操作的好方法是什么?

谢谢!

I have some html that looks like this:

<dl>
    <dt>Label 1</dt>
        <dd>
            Yadda yadda yadda
        </dd>
    <dt>Label 2</dt>

I would like to get at the text that says "Yadda yadda yadda". I figure I need to tell jQuery to do something like "Select tag where the parent is a tag that contains the text "Label 1".

What is a good way to do this?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟酉 2024-11-12 10:29:20

它不是父标签,而是上一个同级标签。您可以这样做:

var text = $('dt:contains("Label 1")').next().text();

当然,这也会选择包含文本 Label 1 的任何其他 dt 元素。

如果该元素始终是第一个 dd 元素,您还可以执行以下操作:

var text = $('dl dd').eq(0).text();

It is not the parent tag, it is the previous sibling. You can do:

var text = $('dt:contains("Label 1")').next().text();

Of course this would also select any other dt element that contains the text Label 1.

If the element is always the first dd element, you can also do:

var text = $('dl dd').eq(0).text();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文