首页 > 代码库 > for循环下的取值问题

for循环下的取值问题

function doanimate(){ for(var i = 0;i < 5;i++){ (function(i){ elment[i].animate({ top:‘50px‘ },500,‘linear‘,function(){ element[i].css(‘top‘,‘0px‘); }) })(i); } }

  • 1

for循环下的取值问题