被立即停止的动画不会触发回调,被立即完成的动画会触发回调。
$(document).ready(function(){
$("button").click(function(){
$("p").hide(3000,function(){
alert("段落现在被隐藏了");
});
});
$("#happy").click(function(){
$("p").stop(false,true);
});
});
被立即停止的动画不会触发回调,被立即完成的动画会触发回调。
$(document).ready(function(){
$("button").click(function(){
$("p").hide(3000,function(){
alert("段落现在被隐藏了");
});
});
$("#happy").click(function(){
$("p").stop(false,true);
});
});