Jquery常用的选择器有哪些
1、基本选择器:#id 、element 、.class 、* 、selector1,selector2,selectorN
2、层次选择器:ancestor descendant 、parent > child 、prev + next 、prev ~ siblings
3、基本过滤器选择器:first 、:last 、:not 、:even 、:odd 、:eq 、:gt 、:lt 、:header 、:animated
4、内容过滤器选择器:contains 、:empty 、:has 、:parent
5、可见性过滤器选择器:hidden 、:visible
6、属性过滤器选择器[attribute] 、[attribute=value] 、[attribute!=value] 、[attribute^=value] 、[attribute$=value] 、[attribute*=value] 、[attrSel1][attrSel2][attrSelN]
7、子元素过滤器选择器:nth-child 、:first-child 、:last-child 、:only-child
8、表单选择器:input 、:text 、:password 、:radio 、:checkbox 、:submit 、:image 、:reset 、:button、:file 、:hidden9、表单过滤器选择器:enabled 、:disabled 、:checked 、:selected
jquery要怎么加入才有效
要让jQuery生效,需要在HTML文档的<head>标签中引入jQuery的库文件。可以使用以下代码:
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
这个代码会从jQuery官网获取最新版本的jQuery库文件并引入到HTML文档中。一旦成功引入了jQuery库文件,就可以在JavaScript代码中使用jQuery的函数和方法了。可以通过选择器选中HTML元素,并使用jQuery提供的方法进行操作。
jquery中的层次选择器都有哪些选择器
层级选择器:
ancestor descendant:表示选取ancestor里面所有的descendant元素。
parent > child:表示选择parent元素的所有子元素。
prev + next:表示选择prev后面的兄弟元素,就是下一个元素。
prev ~ siblings:表示选择prev后面的兄弟元素,后面所有的元素。

