首页  >  筛选  > not(expr|ele|fn)

返回值:jQuerynot(expr|ele|fn)

概述

从匹配元素的集合中删除与指定表达式匹配的元素

参数

exprStringV1.0

一个选择器字符串。

elementDOMElementV1.0

一个DOM元素

function(index)FunctionV1.4

一个用来检查集合中每个元素的函数。this是当前的元素。

示例

描述:

从p元素中删除带有 select 的ID的元素

HTML 代码:
<p>Hello</p><p id="selected">Hello Again</p>
jQuery 代码:
$("p").not( $("#selected")[0] )
结果:
[ <p>Hello</p> ]