将所有 div 元素的高度设置为 100 像素的正确 jQuery 代码是?
A: $("div").height="100"
B: $("div").height(100)
C: $("div").yPos(100)
A: $("div").height="100"
B: $("div").height(100)
C: $("div").yPos(100)
举一反三
- 下列哪种设置可以使div的宽度自适应?( ) A: width:1024px; B: height:100%; C: height:1024px; D: width:100%;
- div{ width:300px; height:100px; padding:30px; border: 6px #F00 double;}上面代码中,div区域高度为()。 A: 100 B: 162 C: 172 D: 136
- 对于<;div style="width:100px,height:100px;background:red">;<;/div>;,可实现与代码$("div").slideUp(400)同样效果的是( ) A: $("div").animate({"width":"0px","height":"0px"}) B: $("div").animate({"width":"0px","height":"100px"}) C: $("div").animate({"height":"0px"}) D: $("div").animate("height","0px")
- 关于jQuery中自定义动画方法animate()的使用方法,正确的是(): $("div").animate("width","100px")|$("div").animate(400,{"width":"100px","height":"100px"})|$("div").animate({"height":"+=50px"})|$("div").animate({"height":"500px";"width":"500px"})
- 关于jQuery中自定义动画方法animate()的使用方法,正确的是 A: $("div").animate(400,{"width":"100px","height":"100px"}) B: $("div").animate("width",100px") C: $("div").animate({"height":"500px","width":"500px"}) D: $("div").animate({"height":"+=50px"})