jQueryの一般的なセレクタ操作演算子
2329 ワード
>直接サブエレメントを表示
([parent>child](parent>child))セレクタは、指定した要素の直接サブ要素のすべての要素を選択します.
$(「div>p」)要素の直接サブ要素のすべての要素
+隣接する要素を表す
([parent>child](parent>child))セレクタは、指定した要素の直接サブ要素のすべての要素を選択します.
$(「div>p」)要素の直接サブ要素のすべての要素
+隣接する要素を表す
$("div + p")
~
$("div ~ p")
:
$("ul li:lt(3)") index 3
$("ul li:gt(3)") index 3
$("ul li:eq(3)") (index 0 )
$(":input") input
$(":text") type="text" input
= が しいことを す $("[href='default.htm']") href "default.htm"
^= を し、 の の に を する $("[title^='Tom']") title "Tom"
~= を し、 は された の を む$("[title~='hello']") title "hello"
*= を し、 には した の が まれます.$("[title*='hello']") title "hello"
[] コンテナを す$("[href]") href
$("[href='default.htm']") href "default.htm"
$= を し、 の を する $("[href$='.jpg']") href ".jpg"
!= が しくないことを す $("[href!='default.htm']") href "default.htm"
*すべての を $("*")
を します.$(".intro,.demo") class "intro" "demo"
$("h1,div,p") 、