zoukankan      html  css  js  c++  java
  • jQuery 选择器

    :animated 匹配在动画中的元素,该动画由jQuery产生

    :contains(text) 匹配包含指定文本的元素

    :disabled 匹配禁用元素

    :empty 匹配没有子节点,没有文本内容的元素

    :even 匹配列表中偶数序号的元素

    :odd 匹配列表中的奇数序号的元素

    :has(sel) 匹配的元素拥有匹配内嵌选择其sel的子孙元素

    :not(sel)匹配的元素不匹配内嵌选择器sel

    组合选择器

    A >B  从A元素的子元素中,选取匹配B的元素

    A+B  从A元素的下一个兄弟元素中,选取匹配B的元素

    A~B   从A元素后面的兄弟元素中,选取匹配B的元素

    选择器组

    ,分隔

    选取方法

    first()  

    last()

    slice()

    filter()

    not()

    add()

    find()

    children()

    next()

    prev()

    nextAll()

    prevAll()

    parent()

    parents()

    end() :  End the most recent filtering operation in the current chain and return the set of matched elements to its previous state.

  • 相关阅读:
    030-B+树(三)
    028-B+树(一)
    027-B树(二)
    026-B树(一)
    025-红黑树(六)
    024-红黑树(五)
    023-红黑树(四)
    022-红黑树(三)
    021-红黑树(二)
    020-红黑树(一)
  • 原文地址:https://www.cnblogs.com/goOtter/p/9534221.html
Copyright © 2011-2022 走看看