jQuery选择不包含某个ID数据的方法

发布时间:2020-11-06编辑:脚本学堂
本文介绍了jQuery选择不包含某个ID数据的方法,jquery选择器的用法,需要的朋友参考下。

使用jquery脚本选择不包含某id的其它数据。

例子:
 

复制代码 代码示例:

$('li').not(':even').css('background-color', 'red'); 
$('li').not(document.getElementById('notli')) 
.css('background-color', 'red'); 

$("div").not(".green, #blueone") 
.css("border-color", "red"); 

例子,

复制代码 代码示例:
Removes the element with the ID "selected" from the set of all paragraphs. 
$("p").not( $("#selected")[0] ) 

例子,

复制代码 代码示例:
Removes the element with the ID "selected" from the set of all paragraphs.
$("p").not("#selected") 

例子,Removes all elements that match "div p.selected" from the total set of all paragraphs. 
 

复制代码 代码示例:

$("p").not($("div p.selected")) 

$("#reset").click(function() { 
  $(':input','#fundingpossibility') 
  .not(':button, :submit, :reset, :hidden, #test') 
  .val(''); 
});