什么是jQuery选择器?
jQuerySelector是一个函数,它使用表达式根据给定的条件从DOM中找出匹配的元素。
选择器用于使用jQuery选择一个或多个HTML元素。一旦选择了元素,我们就可以对该选定的元素执行各种操作。jQuery选择器以美元符号和括号-$()开头。您可以尝试运行以下代码以了解如何与jQuerySelectors一起使用-
示例
<html>
<head>
<title>jQuery Selectors</title>
<script src = "https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("p").css("background-color", "yellow");
});
</script>
</head>
<body>
<div>
<p class = "myclass">This is a paragraph.</p>
<p id = "myid">This is second paragraph.</p>
<p>This is third paragraph.</p>
</div>
</body>
</html>