我们如何在jQuery选择器中使用.not()?
.not()用于选择除可以指定的元素以外的所有<p>元素。
示例
您可以尝试运行以下代码,以了解如何在jQuery选择器中使用.not()。
<!DOCTYPE html> <html> <head> <script src="https://cdn.staticfile.org/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>