位置:首頁 > 軟件操作教程 > 編程開發(fā) > JavaScript > 問題詳情

JavaScript——jQuery 選擇器

提問人:劉團(tuán)圓發(fā)布時間:2020-12-12

選擇器

示例

選取

*

$("*")

所有元素

#id

$("#ldstname")

id=ldstndme 的元素

.class

$(”.intro’_)

所有chss=intro的元素

element

            $("p")

所有元素

<thead id="kto0y"><div id="kto0y"><progress id="kto0y"></progress></div></thead>
    1. 選擇器

      示例

      選取

      .class.cldss

      $0'.intro.demo")

      所有 cldss=intro cldss=demo的元素

      :first

      $("pfirst")

      第一個<p>元素

      :last

      SCpilast")

      最后一個<p>元素

      :even

      SCtreven")

      所有偶數(shù)<汁>元素

      :odd

      $("tr:odd")

      所有奇數(shù)< tr>元素

      :eq(inde^)

      $("ul li:eq⑶")

      列表中的第四個元素index0開始)

      :gt(no)

      $("ul i:gt⑶")

      列出index大于3的元素

      :lt(no)

      $("ul li:It(3)M)

      列出index小于3的元素

      :not(selector)

      $(Minput:not(:empty)")

      所有不為空的input元素

      :header

      $(":header")

      所有標(biāo)題元素<h1 >-<h6>

      xontains(text)

      $(":contains(,W3School,)")

      包含指定字符串的所有元素

      :empty

      $(":emptyM)

      無子(元素)節(jié)點的所有元素

      :hidden

      $(_’p:hidden")

      所有隱藏的<p>元素

      :visible

      $("table:visibleM)

      所有可見的表格

      s1 ,s2,s3

      SC'th.td,.intro")

      所有帶有匹配選擇的元素

      [attribute]

      $("[hrefl")

      所有帶有href屬性的元素

      [attribute=va[ue]

      $("[href=_#T)

      所有href屬性的值等于#的元素

      [attribute! =vdlue]

      $("[hrefl='#']")

      所有href屬性的值不等于#的元素

      [dttribute$=value]

      $("[href$='.jpg']")

      所有href屬性的值包含以.jpg結(jié)尾的元素

      :input

      $(”:input")

      所有<input>元素

      :te  t

      $(": te>a")

      所有type=text<input>元素

      :password

      $(":password")

      所有type=password <input>元素

      :radio

      $(":radio")

      所有type=radio <input>元素

      :checkbox

      $(":checkbox")

      所有type=checkbox <input>元素

      :submit

      $(":submit")

      所有 type=submit  <input> 元素

      繼續(xù)查找其他問題的答案?

      相關(guān)視頻回答
      回復(fù)(0)