javascript – 使用jQuery显示没有特定类的元素的第一个子元素

前端之家收集整理的这篇文章主要介绍了javascript – 使用jQuery显示没有特定类的元素的第一个子元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图显示一个元素的第一个孩子,没有一个类“提交”

所以就像这样

$('#menu li:first-child:not(".submitted")').show();

HTML:

<ul id="menu">
   <li class="submitted">stuff here</li>
   <li class="submitted">stuff here</li>
   <li>stuff here</li> <!-- This one needs to be shown -->
   <li>stuff here</li>
   <li>stuff here</li>
</ul>

有任何想法吗??

解决方法

$('#menu li:not(.submitted):first')
原文链接:https://www.f2er.com/jquery/154021.html

猜你在找的jQuery相关文章