增加延遲在JavaScript中如何添加延遲到JavaScript的循環 在這下面的代碼在JavaScript中如何循環
snakeclass.prototype.start = function() {
while(1){
if(this.collision()){
console.log("game over");
break;
}
this.movesnake();
// delay here by 300 miliseconds
}
};
我怎樣才能在這裏使用設置超時功能;
你的意思是延遲整個while循環嗎? – Shawn31313
@ Shawn31313 yess – qwerty
http://stackoverflow.com/questions/24849/is-there-some-way-to-introduce-a-delay-in-javascript – 2013-07-14 22:06:19