我们如何将 .not() 与 jQuery 选择器一起使用?


.not() 用于选中所有 <p> 元素,但可以指定排除某个元素。

示例

你可以尝试运行以下代码来学习如何将 .not() 与 jQuery 选择器一起使用。

在线演示

<!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 次浏览

启动你的 职业

完成课程即可获得认证

开始学习
广告