代码之家  ›  专栏  ›  技术社区  ›  Andrew G. Johnson

如何选择jquery中没有给定类的所有元素?

  •  195
  • Andrew G. Johnson  · 技术社区  · 15 年前

    鉴于以下情况:

    <ul id="list">
        <li>Item 1</li>
        <li class="active">Item 2</li>
        <li>Item 3</li>
        <li>Item 4</li>
        <li>Item 5</li>
    </ul>
    

    我如何选择除第2项以外的所有内容,也就是:

    $("ul#list li!active")
    
    5 回复  |  直到 8 年前
        1
  •  367
  •   vsync    8 年前

    你可以使用 .not() 方法或 :not() 选择器

    基于示例的代码:

    $("ul#list li").not(".active") // not method
    $("ul#list li:not(.active)")   // not selector
    
        2
  •  42
  •   Andy Shellam    15 年前

    怎么样 $("ul#list li:not(.active)") 是吗?

    http://api.jquery.com/not-selector/

        3
  •  13
  •   Oswaldo Ferreira    11 年前

    你可以用这个来挑选 li 没有类的元素:

    $('ul#list li:not([class])')
    
        4
  •  6
  •   George Sisco    12 年前

    请参阅jquery API文档: not() selector not equal selector .

        5
  •  2
  •   Kaspar Lee    8 年前
    if (!$(row).hasClass("changed")) {
        // do your stuff
    }