为什么step2()里面的console.log($("#div1").width());显示的不是500而是100回调函数不是等step1()执行完后再执行step2()吗?那应该500呀html无标题文档 *{margin:0;padding:0;}#div1{width:100px;height:100px;line-height:100px;text-align:center;border:1px#000solid;} div1
functionstep1(callback){$("#div1").animate({width:"500px"},1000);callback();}functionstep2(){$("#div1").animate({height:"500px"},1000);console.log($("#div1").width());}$(function(){$("input").on("click",function(){step1(step2);});})
森林海
阿波罗的战车
相关分类