导图社区 第二章 jQuery 思维导图
关键点是学习 jQuery 选择器是如何准确地选取您希望应用效果的元素。jQuery 元素选择器和属性选择器允许您通过标签名、属性名或内容对 HTML 元素进行选择。选择器允许您对 HTML 元素组或单个元素进行操作。在 HTML DOM 术语中:选择器允许您对 DOM 元素组或单个 DOM 节点进行操作。
社区模板帮助中心,点此进入>>
互联网9大思维
组织架构-单商户商城webAPP 思维导图。
域控上线
python思维导图
css
CSS
计算机操作系统思维导图
计算机组成原理
IMX6UL(A7)
考试学情分析系统
jQuery选择器
I. 基本选择器
#id
.class
element
*
selecttorl,selector2,...,selectorN
II. 表单选择器
:input
:text
:password
:radio
:submit
:image
:reset
:button
:file
:hidden
:checkbox
III. 过滤选择器
基本过滤选择器
:first
:last
:not(selector)
:odd
:ceven
:eq(index)
:gt(index)
:It(index)
:header
:animated
可见性过滤选择器
:visible
内容过滤选择器
empty
:has(selector)
:contains(text)
:parent
属性过滤选择器
子元素过滤选择器
:nth-child(index/even/odd/equation)
:first-child
:last-child
:only-child
表单对象属性过滤选择器
:enabled
:disabled
:checked
:selected
IV. 层次选择器
parent>child
selector selectorl
prev+next
pre~siblings