Does script async tag preserve script order of exe

2019-09-09 17:47发布

All concerns of combination, minification, gzipping, and cache aside. Does marking a script as async still preserve script execution order?

Say I have a page where jquery is included at the top followed by other scripts at the bottom that assume the presence of jquery.

If I mark the jquery script with the async attribute I know the browser will continue parsing my html. However, will the browser guarantee that jquery is loaded before my other scripts execute or might things happen out of order resulting in an undefined $?

2条回答
我欲成王,谁敢阻挡
2楼-- · 2019-09-09 17:53

Making a script async does not guarantee any synchronous execution, except that of the script itself.

<script async src="jquery.js"></script>
<script>
    $.noop() // will definitely throw an error
</script>

<script async src="jquery.js"></script>
<script src="someOtherNonAsyncScript.js"></script>
<script>
    $.noop() // may or may not throw an error
</script>
查看更多
Viruses.
3楼-- · 2019-09-09 18:13

No. It will execute asynchronously.

The async and defer attributes are boolean attributes that indicate how the script should be executed. (...)

http://www.whatwg.org/specs/web-apps/current-work/multipage/scripting-1.html#attr-script-async

查看更多
登录 后发表回答