not

英[nɒt]   美[nɑ:t]  

adv.不;[用以表示否定、否認、拒絕、禁止等]不是;幾乎不;未必,沒有[用來否定後面的字或片語]

jquery not()方法 語法

作用:not() 從符合元素集合中刪除元素。

語法1:.not(selector)

參數:

參數說明
selector    字串值,包含用於符合元素的選擇器表達式。

語法2:.not(element)

參數:

參數說明
element    一個或多個需要從符合集中刪除的DOM 元素。

語法3:.not(function(index))

參數:

參數描述
#function(index) 用於偵測集合中每個元素的函數。 this 是目前 DOM 元素。

說明:如果給定一個表示DOM 元素集合的jQuery 對象,.not() 方法會用匹配元素的子集建構一個新的jQuery 物件。應用的選擇器會偵測每個元素;不符合該選擇器的元素會被包含在結果中。

jquery not()方法 範例

<!DOCTYPE html>
<html>
<head>
  <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js></script>
</head>
<body>
<p>This is a paragragh.</p>
<p>This is a paragragh.</p>
<p>This is a paragragh.</p>
<p id="selected">This is a paragragh.</p>
<p>This is a paragragh.</p>
<p>This is a paragragh.</p>
<script>
$("p").not("#selected").css('background-color', 'red');
</script>
</body>
</html>
執行實例 »

#點擊 "執行實例" 按鈕查看線上實例

#