jQuery选择器

来源:互联网 发布:go并发编程实战第二版 编辑:程序博客网 时间:2024/05/16 12:48

一:标签选择器          element

        类选择器              class

       ID选择器               #id

      并集选择器           selectorl,selector2,....,selectorN

     并集选择器            element.class或element#id

     全局 选择器            *

    

   1. 层次选择器的说明

   后代选择器             ancestor  descendant       

   子选择器                  parent>child

   相邻元素选择器      prev+next

    同辈选择器             prev~sibings