jQuery Selectors - where item does not have children with a certain class

后端 未结 4 398
南方客
南方客 2021-01-17 22:39

I want to select list items that are immediate children of #nav, that do not themselves have immediate children with an \'active\' class.

This is what I think it sho

4条回答
  •  臣服心动
    2021-01-17 22:57

    For this jquery has the not selector

    you can do something like

    $("#nav > li").children(":not(.active)");
    

提交回复
热议问题