Script Tag - async & defer

前端 未结 8 1669
隐瞒了意图╮
隐瞒了意图╮ 2020-11-22 13:52

I have a couple of questions about the attributes async & defer for the

8条回答
  •  独厮守ぢ
    2020-11-22 14:04

    This image explains normal script tag, async and defer

    • Async scripts are executed as soon as the script is loaded, so it doesn't guarantee the order of execution (a script you included at the end may execute before the first script file )

    • Defer scripts guarantees the order of execution in which they appear in the page.

    Ref this link : http://www.growingwiththeweb.com/2014/02/async-vs-defer-attributes.html

提交回复
热议问题