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