我有 div 和功能鼠标悬停:
$('#mydiv').mouseover(function(){
$('#otherdiv').show('slow');
});
$('#otherdiv').mouseout(function(){
$('#otherdiv').hide('slow');
});
但是...#otherdiv
展览封面#mydiv
由 5 张1px
相互分离的图像组成。我想在那#otherdiv
之后消失,mouseout
但我眨了眨眼。
怎么做?