最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - For loop at an interval? - Stack Overflow

programmeradmin3浏览0评论

How would I control the interval that a for loop runs at?

For instance

for (i=0;i<5;i++) {
    //do stuff
}

But I want the for loop to run every 60ms, not ASAP. Kinda like how setInterval works.

How would I control the interval that a for loop runs at?

For instance

for (i=0;i<5;i++) {
    //do stuff
}

But I want the for loop to run every 60ms, not ASAP. Kinda like how setInterval works.

Share Improve this question asked Feb 21, 2012 at 18:27 rshea0rshea0 12.3k9 gold badges30 silver badges41 bronze badges 1
  • 1 if you want it to work like setInterval use setInterval itself!! – Vivek Chandra Commented Feb 21, 2012 at 18:29
Add a ment  | 

1 Answer 1

Reset to default 9
var interval, i = 0;

function dostuff() {
    /* ... logic ... */

    if(i < 5) i++;
    else clearInterval(interval);
}

interval = setInterval(dostuff, 60);
发布评论

评论列表(0)

  1. 暂无评论