jquery – 引用$(this).parent,类名为’x’

前端之家收集整理的这篇文章主要介绍了jquery – 引用$(this).parent,类名为’x’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在jquery中,我如何用一个“abc”类引用$(this)元素的父元素?

解决方法

喜欢这个:
$(this).parents('.abc');

要么

$(this).parent('.abc');

要么

$(this).closest('.abc');

.parent().parents()是类似的,除了.parent()仅在DOM树中上升一级.

原文链接:https://www.f2er.com/jquery/180366.html

猜你在找的jQuery相关文章