jQuery 链接parent(),有更简单的方法吗?
嘿,我有一些像这样的标记
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
.closest()
,如下所示:您可以在这里测试。
.parent("div")
并不像看起来那么直观,它仅获取直接父级如果它与选择器匹配,.closest()
攀爬父级直到它与选择器匹配。请注意(不适用于此示例)如果
this
与选择器匹配,它会返回 that 元素,它不会开始第一个父母,它从自身开始。You can use
.closest()
, like this: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.