如何在 jQuery 选择器中使用 .not()?


.not() 用于选择除某个元素以外的所有 <p> 元素,该元素可以指定。

示例

你可以尝试运行以下代码,了解如何在 jQuery 选择器中使用 .not()  。

现场演示

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $("p:not(.myclass)").css("background-color", "red");
});
</script>
</head>
<body>
<h1>Heading</h1>

<p class="myclass">This is demo text.</p>
<p>This is another text.</p>

</body>
</html>

更新于:2019 年 12 月 18 日

165 次浏览

开启你的 职业生涯

完成课程获得认证

开始学习
广告