我有div和功能mouseover:
$('#mydiv').mouseover(function(){
$('#otherdiv').show('slow');
});
$('#otherdiv').mouseout(function(){
$('#otherdiv').hide('slow');
});
但是...展览封面
#otherdiv
上的#mydiv
包含5张彼此分离的图像1px
。我希望#otherdiv
在mouseout
之后消失,但我会闪烁。怎么做?
最佳答案
$('#mydiv').hover(function(){
$('#otherdiv').stop().show('slow');
}, function(){
$('#otherdiv').stop().hide('slow');
});
demo jsBin
http://api.jquery.com/hover
http://api.jquery.com/stop