當需要快速結束一個目前正在執行的jquery 動畫時(還沒執行完成),如fadeOut(),可以在執行目前動畫的物件上執行stop(true);方法如: 複製程式碼 程式碼如下: <BR>Confunction deletefunction (consultid,obj){ <BR>jQuery(obj).parents("li").html("<div class='show_tip' colspan='6' align='left'>刪除成功!<a href=' javascript:;' onclick='iKnow(this);'>我知道了 ").fadeOut(5000) ; } function iKnow(obj){ jQuery (obj).parents("li").stop(true).remove() ; }