jQuery:选择祖父母

前端之家收集整理的这篇文章主要介绍了jQuery:选择祖父母前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有更好的方法来选择祖先元素在jQuery中,以避免这一点?
$(this).parent().parent().parent().parent().parent().children(".title,.Meta").fadeIn("fast");

谢谢。

解决方法

您可以使用与选择器匹配父对象的parents()方法

http://api.jquery.com/parents/

或者如果你使用1.4有一个新的parentsUntil()方法

http://api.jquery.com/parentsUntil/

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

猜你在找的jQuery相关文章