下面哪个 jQuery 选择器选择具有给定元素 id 为 box 的元素?( )
A: #("$box")
B: $("#box")
C: $("box")
D: $(".box")
A: #("$box")
B: $("#box")
C: $("box")
D: $(".box")
举一反三
- 下面哪个 jQuery 选择器选择 id 为 box 的元素里的所有a标签?( ) A: $("#box.a") B: $("a") C: $("box").find("a") D: $("#box").find("a")
- 在jQuery中,移除节点类名为"box"下的div元素的方法是()。 A: $(".box div").remove(); B: $(".box div").empty(); C: $("div").innerhtml(""); D: $("div").innerHTML = "";
- 以下关于 jQuery 节点的说法中错误是( )。 A: jQuery 中用 $(".box").insertBefore (ele1,ele2) 给指定 ele2 前添加 ele1 元素 B: jQuery 中用 $(".box").append (ele) 给 box 类后添加 ele 元素 C: jQuery 中用 $(".box").appendTo (ele) 给 box 类后添加 ele 元素 D: jQuery 中用 $(".box").insertAfter (ele1,ele2) 给 ele2 后添加 ele1 元素
- 在构建基本体中,WebGL库与代码对应不正确的是? A: A-frame:<a-box color="red" width="3"> B: Three.js:<a-entity geometry="primitive:box; width:3"material="color:red"> C: HTML5:<a-box color="red" width="3"> D: HTML5:<a-entity geometry="primitive:box; width:3"material="color:red">
- id选择器使用_______________进行标识,后面紧跟id名。 A: " B: " C: "&" D: "@" E: "$"