改成这样居然可以为什么?
$("button:last").click(function(){
$("#a2").hide({
d:3000,
com:function(){
alert("e");
}
})
})
并不能用了,相当于执行了hide(),
duration: 3000 //这个参数没有了所以动画速度是默认的速度.
com:function(){
alert("e"); //这个也没用了,动画完成后没有警告框