What's the equivalent of Java's Thread.sleep() in Javascript?
|
1
|
|
|
|
|
|
The simple answer is that there is no such function. The closest thing you have is:
Note that you especially don't want to busy-wait (e.g. in a spin loop), since your browser is almost certainly executing your JavaScript in a single-threaded environment. Here are a couple of other SO questions that deal with threads in JavaScript:
And this question may also be helpful: |
||||||
|
|
|
There's no direct equivalent, as it'd pause a webpage. However there is a setTimeout(), e.g.:
Closure example (thanks Daniel):
The second argument is milliseconds before firing, you can use this for time events or waiting before performing an operation. Edit: Updated based on comments for a cleaner result. |
|||
|
|
|
You can either write a spin loop (a loop that just loops for a long period of time performing some sort of computation to delay the function) or use:
This will call 'Func1()' after 3 seconds. Edit: Credit goes to the commenters, but you can pass anonymous functions to setTimeout.
This is much more efficient and does not invoke javascript's eval function. |
||||||||||||||||
|
|
|
Or maybe you can use the setInterval function, to call a particular function, after the specified number of milliseconds. Just do a google for the setInterval prototype.I don't quite recollect it. |
||
|
|
