举一反三
- 定义了类选择器test,让段落应用class名为test的类,下列写法正确的是: A: .test{color:red;} B: #test{color:red;} C: test{color:red;} D: ,test{color:red;}
- 使用标签指定式选择器,让段落应用id名为test的类,下列写法正确的是
- 使用选择器,选择test的类的段落,下列写法正确的是() A: .p.test{color:red;} B: p C: test{color:red;} D: p.test{color:red;} E: .p,test{color:red;}
- 使用标签指定式选择器,让段落使用id名为test的样式,下列写法正确的是 A: p .test{color:red;} B: p C: test{color:red;} D: p.test{color:red;} E: p,test{color:red;}
- 以下为jQuery类选择器正确用法的是()。 A: $("class”) B: $(”.test”) C: S("#test div") D: S("#test”)
内容
- 0
jQuery类选择器可以通过指定的class查找元素语法是() A: $("test.") B: $("test") C: $("#test") D: $(".test")
- 1
如下代码定义了一个类Test: class Test { private int y; Test (int x) { y:x; } }现在为Test 类生成一个对象,正确的语句是( )。 A: Test t = new Test( ); B: Test t=new Test(10, 20); C: Test t; D: Test t=new Test(10);
- 2
类test的定义如下,$x是类test的对象,则4个选项中,正确的是( )。class test{const no='110';}$x=new test( ); A: echo $x.no; B: echo $x->no; C: echo test->no; D: echo test::no;
- 3
下列关于Test类的定义代码中,正确的是______。 A: class Test implements Runnable { public void run() {} public void someMethod() {} } B: class Test implements Runnable { public void run(); } C: class Test implements Runnable { public void someMethod(); } D: class Test implements Runnable { public void someMethod() {} }
- 4
设有泛型类的定义如下class Test; { }则由该类创建对象时,使用正确的是? A: Test; x = new Test;(); B: Test x = new Test(); C: Test; x = new Test;(); D: Test; x = new Test;();