如何简化这个jQuery选择器?

前端之家收集整理的这篇文章主要介绍了如何简化这个jQuery选择器?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我用这个:
$(this).parent('label').parent('li').parent('ul').find('img').removeClass('selectedRadio');

而不是使用父3次,我怎么能压缩它?

解决方法

$(this).parents('ul:first').find('img').removeClass('selectedRadio');

只需找到第一个UL,然后删除图像.

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

猜你在找的jQuery相关文章