使用jQuery框架后,设置所有div标签的背景颜色为红色的代码是( )。
A: $(“div”).style.css(“background”,”red”)
B: $(“div”).style.background=”red”
C: $(“div”).css(“background”,”red”)
D: $(“div”).style(“background”,”red”)
A: $(“div”).style.css(“background”,”red”)
B: $(“div”).style.background=”red”
C: $(“div”).css(“background”,”red”)
D: $(“div”).style(“background”,”red”)
举一反三
- 应用jQuery,要想实现:鼠标离开div时,将其背景颜色设置成红色,下列实现正确的是()<;div id="box">;jQuery事件<;/div>; A: $(".box").mouseover(function(){$(this).css("background","red");}); B: $(" C: box").mouseout(function(){$(this).css("background","red");}); D: $(" E: box").bind("mouseout",function(){$(this).css("background","red");}); F: $(".box").mouseout("bind",function(){$(this).css("background","red");});
- 对于<div style="width:100px,height:100px;background:red"></div>,可实现与代码$("div").slideUp(400)同样效果的是
- 对于<;div style="width:100px,height:100px;background:red">;<;/div>;,用animate实现与代码$("div").hide(400)同样效果的写法是:_______。
- 页面上的div标签,其HTML代码为<div id="box" style="color:red">文字</div>,为其设置CSS样式如下
- Vue中如何通过内联样式设置背景色为黑色 A: :style="{background:'red'}" B: style="{background:'red'}" C: class="{background:'red'}" D: :styles="{background:black}"