var data=['a','b','c']; $.each(data,function(k,v) { setTimeout(function(){ console.log('值:'+v+',time:'+k*500); },k*500); });