以下为jQuery类选择器正确用法的是()。
A: $("class”)
B: $(”.test”)
C: S("#test div")
D: S("#test”)
A: $("class”)
B: $(”.test”)
C: S("#test div")
D: S("#test”)
举一反三
- jQuery类选择器可以通过指定的class查找元素语法是() A: $("test.") B: $("test") C: $("#test") D: $(".test")
- 选取属性title值等于test的div元素,用以下哪个选择器?() A: $(div{title=test}) B: $(div[title=test]) C: $([title=test]) D: $(div[title*test])
- 定义了类选择器test,让段落应用class名为test的类,下列写法正确的是: A: .test{color:red;} B: #test{color:red;} C: test{color:red;} D: ,test{color:red;}
- 定义了类选择器test,让段落应用class名为test的类,下列写法正确的是:
- 设有泛型类的定义如下class Test; { }则由该类创建对象时,使用正确的是? A: Test; x = new Test;(); B: Test x = new Test(); C: Test; x = new Test;(); D: Test; x = new Test;();