jQuery的篩選操作2

2021-08-28 08:59:45 字數 1904 閱讀 3258

not,排除指定的元素

slice,選取指定元素的乙個子集

find,選擇乙個元素,和空格操作相同,例如 $("p span")相同。

next, nextall, nextuntil,查詢相鄰的同輩元素(unitl的操作,不包含最終的那個元素)

parent, parents, parentsuntil查詢當前元素的祖先元素

prev, prevall, prevuntil查詢當前元素的前乙個同輩元素

contents,選取當前元素的子元素

end回到最近 的乙個破壞性操作之前,即,將匹配的元素列表變為前一次的狀態

andself加入先前選取的元素到當前元素中

sublings(兄弟意思)選取當前的元素的乙個同輩元素的子集

*****===jquery 的篩選操作2*****====

hello111

hello again

hello222

hello

cruel

world

hello

hello again11

hello again22

hello again33

inner div

and again

hello, how are you?

hello

hello again next p

this is div,and again

and again2222

term 1

definition 1-a

definition 1-b

definition 1-c

definition 1-d

term 2

definition 2-a

definition 2-b

definition 2-c

term 3

definition 3-a

definition 3-b

c

iiihello

this is div,hello again

and again test_prev

and again test_prev after

term 1

definition 1-a

definition 1-b

definition 1-c

definition 1-d

term 2

definition 2-a

definition 2-b

definition 2-c

term 3

definition 3-a

definition 3-b

hello,how are you?

hello john, how are you doing?

this is div

first paragraph

second paragraph

hello

hello again22222

and again

jQuery 的篩選操作1

eq,獲取第n個元素 first,獲取第乙個元素 last,獲取最後乙個元素 hasclass,獲取有指定類選擇器的元素 filter,篩選 出與指定表示式匹配的元素 parent,獲取乙個包含所有匹配的元素的唯一父元素的集合 is,檢測匹配的元素,如果其中至少有乙個元素符合給定的表示式就返回tru...

jQuery的篩選器

首先了解一下 jquery 是乙個前端類庫 方法庫,工具庫 有人把 js 裡面各種 dom 操作都給你封裝好了 獲取 dom 元素 操作元素的 類名 操作元素的 屬性 操作元素的 樣式 元素 動畫 jquery 是乙個類庫 方法庫 jquery 裡面 95 以上都是方法 使用的時候,別忘了寫 jqu...

jQuery的篩選器

1 li 2 li 3 li 4 li li5 5 li 6 li 7 li 8 li ul jquery.min.js script 什麼是jquery的篩選器 在通過選擇器,獲取到標籤物件的基礎上,再來進行篩選,選擇出符合條件的標籤物件 篩選器一定是在選擇器的基礎上使用 為了鏈式程式設計方便 篩...