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

Javascript execution order with setTimeout() - Stack Overflow

programmeradmin1浏览0评论

Say that I have the following code:

function testA {
   setTimeout('testB()', 1000);
   doLong();
}

function testB {
   doSomething();
}

function doLong() {
   //takes a few seconds to do something
}

I execute testA(). I have read that Javascript is single-threaded. What happens after 1000 milliseconds, when the timeout for testB() is reached?

Some possibilities I can think of:

  • testB() is queued up to execute after doLong() and anything else it called have finished.
  • doLong() is immediately terminated and testB() is started.
  • doLong() is given a little while longer to execute before being stopped (either automatically or after prompting the user) and testB() is started.
  • doLong() is paused, testB() is started. After testB() has finished, doLong() resumes.

What is the correct answer? Is it implementation dependant or part of the standard?*

This question is similar but not the same, as far as I can tell.

Any links that you can remend for better understanding Javascript execution would be appreciated.

Thanks!

*Yes, I know that not all browsers follow standards :(

Say that I have the following code:

function testA {
   setTimeout('testB()', 1000);
   doLong();
}

function testB {
   doSomething();
}

function doLong() {
   //takes a few seconds to do something
}

I execute testA(). I have read that Javascript is single-threaded. What happens after 1000 milliseconds, when the timeout for testB() is reached?

Some possibilities I can think of:

  • testB() is queued up to execute after doLong() and anything else it called have finished.
  • doLong() is immediately terminated and testB() is started.
  • doLong() is given a little while longer to execute before being stopped (either automatically or after prompting the user) and testB() is started.
  • doLong() is paused, testB() is started. After testB() has finished, doLong() resumes.

What is the correct answer? Is it implementation dependant or part of the standard?*

This question is similar but not the same, as far as I can tell.

Any links that you can remend for better understanding Javascript execution would be appreciated.

Thanks!

*Yes, I know that not all browsers follow standards :(

Share Improve this question edited May 23, 2017 at 12:13 CommunityBot 11 silver badge asked Feb 1, 2011 at 9:48 Brian BeckettBrian Beckett 4,9006 gold badges36 silver badges52 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 11

The first of your guesses is the correct one: testB() is queued up to execute after doLong() and anything else it called have finished.

If it takes more than one second for testA to finish, testB will simply have to wait.

Also, you should write setTimeout(testB, 1000) rather than setTimeout('testB()', 1000). Sending a string to setTimeout is, like using eval, generally considered evil and will make you enemies ;)

发布评论

评论列表(0)

  1. 暂无评论