jquery遍歷節點

2021-10-01 07:26:46 字數 1203 閱讀 9934

遍歷所有的li標籤

$

(function()

})

通過each()遍歷指定的多個同類節點

$

(function()

)})

find()函式用於查抄子節點,如果找到了,則返回被找到的節點物件

var node=$(

"ul").

find

("li");

alert

(node);$

("ul").

find

("li").

css(

"color"

,"yellow"

);

滑鼠事件

$

("[type=text]").

click

(function()

);$(

"[value=111111]").

mouseout

(function()

);

鍵盤事件

$

(document)

.keydown

(function()

);$(document)

.keyup

(function()

);$(document)

.keypress

(function()

);

表單事件

$

("form").

submit

(function()

var code=$(

"input:eq(2)").

val();

if(code=="")

return

true;}

);

表單提交通過 「enter」實現

$

(document)

.keypress

(function

(e)var pass=$(

"[type=password]").

val();

if(pass!="")

if(sum==2)

}})

jquery遍歷節點

父類節點遍歷 parent 尋找節點的第乙個父節點 引數用於篩選元素 parents 尋找節點的所有父類節點 會一直找到document 引數用於篩選元素 parentuntil el 尋找兩個節點之間的所有父類節點 子類節點遍歷 children 尋找節點的第乙個子節點 引數用於篩選元素 find...

JQuery節點遍歷

ancestors style src jquery jquery 1.11.1.min.js script document ready function script head class ancestors body 曾曾祖父 style width 500px div 曾祖父 ul 祖父 l...

jQuery遍歷節點

1.chirldren html jquery var bodylength body chirldren length 獲取下面的子元素個數,結果為2 var plength p chirldren length 獲取標記下的子元素個數,結果為0 var ullength ul chirldren...