當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery :not()用法及代碼示例


用法
not selector

說明:選擇所有與給定選擇器不匹配的元素。

  • 添加的版本:1.0jQuery( ":not(selector)" )

    selector: 篩選依據的選擇器。

:not() 中接受所有選擇器,例如::not(div a):not(div,a)

其他注意事項

.not() 方法最終將為您提供比將複雜選擇器或變量推入 :not() 選擇器過濾器更易讀的選擇。在大多數情況下,這是一個更好的選擇。

例子:

查找所有未檢查的輸入並突出顯示下一個兄弟跨度。請注意,單擊複選框時沒有任何變化,因為沒有鏈接單擊事件。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>not demo</title>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<div>
  <input type="checkbox" name="a">
  <span>Mary</span>
</div>
<div>
  <input type="checkbox" name="b">
  <span>lcm</span>
</div>
<div>
  <input type="checkbox" name="c" checked="checked">
  <span>Peter</span>
</div>
 
<script>
$( "input:not(:checked) + span" ).css( "background-color", "yellow" );
$( "input").attr( "disabled", "disabled" );
</script>
 
</body>
</html>

演示:

相關用法


注:本文由純淨天空篩選整理自jquery.com大神的英文原創作品 :not()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。