一、单选题
1. 下面有关子元素伪类选择器的说法中,正确的是( )。
A. :nth-child(n)和:nth-of-type(n)中的n都是从0开始的
B. :nth-child(1)可以等价于:first-child
C. :first-of-type跟:first-child是完全等价的
D. :nth-child(n)中的n只能是数字
2. 在jQuery中,可以使用( )来获取焦点的表单元素。
A. $(":checked")
B. $(":blur")
C. $(":focus")
D. $(":enabled")
3. 如果想要匹配包含某个文本的元素,应该使用( )选择器来实现。
A. :text() B. :contains()
C. :read-only D. :visible
4. 下面有一段代码,其中能够选中最后一个p元素的是( )。(选两项)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<div></div>
<p></p>
<p></p>
<p></p>
<div></div>
</body>
</html>
A. $("p:last-child")
B. $("p:nth-child(3)")
C. $("p:last-of-type")
D. $("p:nth-of-type(3)")