我有这个代码:
$(document).ready(function(){
$('.first').mouseenter(function(){
$(this).animate({
top: '115px'
}, 500 );
});
$('.first').mouseleave(function(){
$(this).animate({
top: '127px'
}, 500 );
});
});
当我运行它时,我的 .first div 至少上下两次,如果不是更多的话,我不知道为什么会这样。
谢谢