2013-03-27 222 views

回答

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> 

工作撥弄http://jsfiddle.net/KtckK/

+0

是的,即時通訊還沒有這樣做,但謝謝:) – 2013-03-27 15:22:59

0

我更新了小提琴,該示例使用jQuery的。

$('#divA').hover(

function() { // On mouse over 
    $(this).hide(); // this references the div. 
} 

//function() { // On mouse out 
// $(this).show(); // this references the div. 
//} 
); 

http://jsfiddle.net/eJ6Rq/11/

讓我知道,如果這就是你要找的,或者不是。