应用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");});
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");});
举一反三
- 使用jQuery框架后,设置所有div标签的背景颜色为红色的代码是( )。 A: $(“div”).style.css(“background”,”red”) B: $(“div”).style.background=”red” C: $(“div”).css(“background”,”red”) D: $(“div”).style(“background”,”red”)
- 页面上的div标签,其HTML代码为<div id="box" class="red">文字</div>,为其设置CSS样式如下: #box{ color:blue; } .red{ color:red; } 那么,文字的颜色将显示为
- 下列选项关于jQuery中设置类名为box的元素样式语法正确的是()。 A: $(".box").css("color","red";"border","1px<br/>solid blue"); B: $(".box").css({"color":"red","border":"1px<br/>solid blue"}); C: $(".box").style("color","red";"border","1px<br/>solid blue"); D: $(".box").style.color="red";
- (网站).box{background:red;*background:blue;}在IE6.0浏览器中.box的背景色是()? A: blue B: red C: green D: black
- 页面上的div标签,其HTML代码为<div id="box" style="color:red">文字</div>,为其设置CSS样式如下