[javascript]jquery选择器笔记

  • 技术文档

中文:http://jquery.cuishifeng.cn/

英文:http://api.jquery.com/category/selectors/

  • 分类
    • 基本选择器
    • 层次选择器
    • 过滤选择器
    1. 基本过滤器
    2. 内容过滤器
    3. 可见性过滤器
    4. 属性过滤选择器
    5. 子元素过滤选择器
    6. 表单过滤选择器
    7. 表单对象属性过滤选择器
  • 注意点:
    • :empty(取不包含子元素或文本为空的元素)<=> :parent(取包含子元素或文本的元素)
    • :first <=> :first-child
    • :nth-child(even) <=> :nth-child(2n)  
    • :nth-child(odd) <=> :nth-child(2n+1)  

 

posted @ 2017-09-17 15:57  vickylinj  阅读(123)  评论(0编辑  收藏  举报