Use window.setTimeout instead. Code: Code: var delay = 1000; function Timer() { // do whatever window.setTimeout(Timer, delay); } ...
確定! 回上一頁