当前位置:  开发笔记 > 编程语言 > 正文

使用jQuery查找合适的父级

如何解决《使用jQuery查找合适的父级》经验,为你挑选了2个好方法。

给定DOM元素,如何找到具有给定css类的最近父元素?

$(".editButton").click(function() {
   (magic container selector goes here).addClass("editing");
});

我不想使用lot或$(...).parent().parent(),因为我不想绑定到特定的dom结构.



1> Bill Zeller..:

这应该工作

$(this).parents('.classYouWant:first').addClass("editing");



2> fiatjaf..:
$( this ).closest( '.yourselector' )

顾名思义,找到最接近this元素的祖先.

推荐阅读
和谐啄木鸟
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有