[javascript]jquery选择器笔记
- 技术文档
中文:http://jquery.cuishifeng.cn/
英文:http://api.jquery.com/category/selectors/
- 分类
- 基本选择器
- 层次选择器
- 过滤选择器
- 基本过滤器
- 内容过滤器
- 可见性过滤器
- 属性过滤选择器
- 子元素过滤选择器
- 表单过滤选择器
- 表单对象属性过滤选择器
- 注意点:
- :empty(取不包含子元素或文本为空的元素)<=> :parent(取包含子元素或文本的元素)
- :first <=> :first-child
- :nth-child(even) <=> :nth-child(2n)
- :nth-child(odd) <=> :nth-child(2n+1)