使用jQuery查找适当的父项

前端之家收集整理的这篇文章主要介绍了使用jQuery查找适当的父项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
给定一个DOM元素如何使用给定的css类来找到最近的父类
$(".editButton").click(function() {
   (magic container selector goes here).addClass("editing");
});

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

解决方法

这应该工作
$(this).parents('.classYouWant:first').addClass("editing");
原文链接:https://www.f2er.com/jquery/182009.html

猜你在找的jQuery相关文章