2011-09-26 50 views

回答

1

使用stop()

$("#go").mouseover(function(){ 
    $("#block").stop(true,true).animate({ width: "900px" }, 300); 
}); 

$("#go").mouseleave(function(){      
    $("#block").animate({ width: "0px" }, 300); 
}); 
+0

太感謝你了^^ – user964351

+0

歡迎您':)'我希望你知道如何標記答案接受':D' – Rafay

+0

不需要做' true,true# – daryl