jQuery 链接parent(),有更简单的方法吗?

发布于 2024-09-27 09:48:30 字数 400 浏览 3 评论 0原文

嘿,我有一些像这样的标记

<div id="some-id">
    <h2><a href="#">Title</a></h2>
</div>

和一些像这样的 jQuery

$(this).parent().parent().attr("id")

$(this) 指的是 'h2' 中的 'a' 标签

有没有一种更简单的方法来选择父 div 而无需使用parent() 两次。我尝试过

$(this).parent("div").attr("id")

,但没有成功。

谢谢

Hay, I have some markup like this

<div id="some-id">
    <h2><a href="#">Title</a></h2>
</div>

and some jQuery like this

$(this).parent().parent().attr("id")

$(this) is referring to the 'a' tag within the 'h2'

Is there an easier way to select the parent div without using parent() twice. I tried

$(this).parent("div").attr("id")

but it didn't work.

Thanks

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

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

发布评论

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

评论(1

烟花易冷人易散 2024-10-04 09:48:30

您可以使用 .closest(),如下所示:

$(this).closest("div").attr("id")

您可以在这里测试
.parent("div") 并不像看起来那么直观,它获取直接父级如果它与选择器匹配,.closest() 攀爬父级直到它与选择器匹配。

请注意(不适用于此示例)如果 this 与选择器匹配,它会返回 that 元素,它不会开始第一个父母,它从自身开始。

You can use .closest(), like this:

$(this).closest("div").attr("id")

You can test it here.
.parent("div") isn't as intuitive as it seems, it gets only the immediate parent if it matches the selector, .closest() climbs the parents until it matches the selector.

Please note that (doesn't apply to this example) if this matches the selector, it returns that element, it doesn't start with the first parent, it starts with itself.

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