欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

jquery選擇題試題

張振鋒1年前8瀏覽0評論

jQuery選擇題試題

1. jQuery選擇器是用來選擇頁面上的元素。下列選項中哪一個是選擇所有元素的選擇器?
A. *
B. #
C. .
D. ^
2. 下列代碼中,哪個選項是選擇class為"box"的元素?
A. $("box")
B. $(".box")
C. $("#box")
D. "^box"
3. 下列代碼中,哪個選項是選擇id為"box"的元素?
A. $("box")
B. $(".box")
C. $("#box")
D. "^box"
4. 下列代碼中,哪個選項是選擇所有p標簽內第一個子元素為span的元素?
A. $("p span:first-child")
B. $("p:first-child span")
C. $("p span:first-of-type")
D. $("p:first-of-type span")
5. 下列代碼中,哪個選項是選擇所有class為"test"的直接子元素中第一個p標簽的元素?
A. $(".test > p:first-child")
B. $(".test p:first-child")
C. $(".test:first-child > p")
D. $(".test > p:first-of-type")
答案:
1. A
2. B
3. C
4. A
5. A