1樓:青盟
三十三、jquery簡介+選擇器
2樓:殳化
單選: 1、下面哪一種不屬於jquery的選擇器。(b:層次選擇器 ) a:基本選擇器 b:層次選擇器
3樓:戀戀土豆絲
很多種,大概歸納為9種。
(1)基本
#idelement
.class
* selector1,selector2,selectorn(2)層次選擇器:
ancestor descendant
parent > child
prev + next
prev ~ siblings
(3)基本過濾器選擇器
:first
:last
:not
:even
:odd
:eq:gt
:lt:header
:animated
(4)內容過濾器選擇器
:contains
:empty
:has
:parent
(5)可見性過濾器選擇器
:hidden
:visible
(6)屬性過濾器選擇器
[attribute]
[attribute=value]
[attribute!=value]
[attribute^=value]
[attribute$=value]
[attribute*=value]
[attrsel1][attrsel2][attrseln](7)子元素過濾器選擇器
:nth-child
:first-child
:last-child
:only-child
(8)表單選擇器
:input
:text
:password
:radio
:checkbox
:submit
:image
:reset
:button
:file
:hidden
(9)表單過濾器選擇器
:enabled
:disabled
:checked
:selected
jquery中有哪幾種型別的選擇器
4樓:網海1書生
$("*") 所有元素
$("#lastname") 的元素
$(".intro") 所有 的元素
$("p") 所有 元素
$(".intro.demo") 所有 且 的元素
$("p:first") 第一個 元素
$("p:last") 最後一個 元素
$("tr:even") 所有偶數 元素
$("tr:odd") 所有奇數 元素
$("ul li:eq(3)") 列表中的第四個元素(index 從 0 開始)
$("ul li:gt(3)") 列出 index 大於 3 的元素
$("ul li:lt(3)") 列出 index 小於 3 的元素
$("input:not(:empty)") 所有不為空的 input 元素
$(":header") 所有標題元素 -
$(":animated") 所有動畫元素
$(":contains('w3school')") 包含指定字串的所有元素
$(":empty") 無子(元素)節點的所有元素
$("p:hidden") 所有隱藏的 元素
$("table:visible") 所有可見的**
$("th,td,.intro") 所有帶有匹配選擇的元素
$("[href]") 所有帶有 href 屬性的元素
$("[href='#']") 所有 href 屬性的值等於 "#" 的元素
$("[href!='#']") 所有 href 屬性的值不等於 "#" 的元素
$("[href$='.jpg']") 所有 href 屬性的值包含以 ".jpg" 結尾的元素
$(":input") 所有 元素
$(":text") 所有 type="text" 的 元素
$(":password") 所有 type="password" 的 元素
$(":radio") 所有 type="radio" 的 元素
$(":checkbox") 所有 type="checkbox" 的 元素
$(":submit") 所有 type="submit" 的 元素
$(":reset") 所有 type="reset" 的 元素
$(":button") 所有 type="button" 的 元素
$(":image") 所有 type="image" 的 元素
$(":file") 所有 type="file" 的 元素
$(":enabled") 所有啟用的 input 元素
$(":disabled") 所有禁用的 input 元素
$(":selected") 所有被選取的 input 元素
$(":checked") 所有被選中的 input 元素
5樓:青盟
三十三、jquery簡介+選擇器
jquery選擇器無效,jQuery選擇器為什麼一定要用 才有效,用jQuery就不能生效
當然無效啦,di dt css cursor pointer click function 你這個 放在 function 裡面,就是頁面載入完的時候觸發,而頁面載入完的時候根本版就沒權 有dt這個東西。document ready function btn click function var s...
jquery選擇器的問題get
因為你通過 this children get 0 獲得的是一個dom物件,無法呼叫hide 第二中辦法中 c 將dom物件c轉換成了內jquery物件,所以容呼叫hide 成功。你可以試試 this children get 0 style.display none 應該也行。get 0 並不是j...
jquery的class選擇器和id選擇器的區別是什麼
class選擇器獲取到的是一類物件的集合,id選擇器是獲取一個物件,好比姓張的人可能是n個,而shenfen證為 xx的人就是一個。在css中,id選擇器和class選擇器的區別 id選擇器只是一個標籤 class選擇器,可以定義n個同樣的標籤看圖 jquery的class選擇器和id選擇器的區別是...