如何在悬停时更改div?
这是我想要做的一个例子:JS FIDDLE
答案 0 :(得分:1)
你真的想要JS吗?
<style>
#container #divB{ display: none; }
#container:hover #divB{ display: block; }
#container:hover #divA{ display: none; }
</style>
<div id="container">
<div id="divA">
DIV A is visible until hover
</div>
<div id="divB">
DIV B must show up after hover DIV A and DIV A must hide
</div>
</div>
答案 1 :(得分:0)
我更新了你的小提琴,这个例子使用了jQuery。
$('#divA').hover(
function () { // On mouse over
$(this).hide(); // this references the div.
}
//function () { // On mouse out
// $(this).show(); // this references the div.
//}
);
如果您正在寻找或不寻找,请告诉我。
答案 2 :(得分:0)
您可以尝试jQuery,请参阅http://jsfiddle.net/eJ6Rq/3/
$('#divA').hover(function(){$(this).hide(); $('#divB').show();});