我需要在鼠标悬停时展开div,发生得非常好但是当鼠标离开div时却没有恢复正常
有些人来了我的文件http://jsfiddle.net/MyKnB/
$("#logo-expand").mouseenter(function() {
$(this).animate({
width: "56px;"
}, 300 );
});
$("#logo-expand").mouseleave(function() {
$(this).animate({
width: "170px"
}, 300 );
});