$(".io").animate({"width":"+=50px"},{duration:3000,function(){$(this).dequeue("fx1");}});
$(".io").queue("fx1",function() {console.log("over");$(this).dequeue("fx1");$(".io").animate({"height":"+=50px"},{duration:3000,function() {$(this).dequeue();}});});
为什么fx1的动画序列不执行呢?就是width加了50px,height动画没执行。。。。