:not(selector) | jQuery API 3.2 中文文档 | jQuery API 在线手册

jQuery API 3.2.1

推荐办理招商信用卡,新户首刷礼,五折享美食,需要的速度围观~click here
首页  >  选择器  > :not(selector) 源码下载

返回值:Array<Element(s)>:not(selector)

概述

去除所有与给定选择器匹配的元素

在jQuery 1.3中,已经支持复杂选择器了(例如:not(div a) 和 :not(div,a))

参数

selector Selector V1.0

用于筛选的选择器

示例

描述:

查找所有未选中的 input 元素

HTML 代码:
            <input name="apple" />
<input name="flower" checked="checked" />
          
jQuery 代码:
            $("input:not(:checked)")
          
结果:
            [ <input name="apple" /> ]