我有div和功能mouseover:

$('#mydiv').mouseover(function(){
    $('#otherdiv').show('slow');
});

$('#otherdiv').mouseout(function(){
    $('#otherdiv').hide('slow');
});


但是...展览封面#otherdiv上的#mydiv包含5张彼此分离的图像1px。我希望#otherdivmouseout之后消失,但我会闪烁。

怎么做?

最佳答案

$('#mydiv').hover(function(){
    $('#otherdiv').stop().show('slow');
}, function(){
    $('#otherdiv').stop().hide('slow');
});


demo jsBin
http://api.jquery.com/hover
http://api.jquery.com/stop

07-24 22:04