最佳答案
我想在while
循环中添加一个delay/sleep:
我是这样试的:
alert('hi');
for(var start = 1; start < 10; start++) {
setTimeout(function () {
alert('hello');
}, 3000);
}
只有第一种情况是正确的:在显示alert('hi')
之后,它将等待3秒,然后alert('hello')
将被显示,但随后alert('hello')
将不断重复。
我想要的是,在alert('hello')
显示3秒后alert('hi')
,然后它需要等待3秒的第二次alert('hello')
等。