script加载
Script加载
异步加载
1 | |
延迟加载
1 | |
同步加载
1 | |
| difference | async | defer |
|---|---|---|
| block page loading | no | no |
| execute by insert order | no | yes |
| rely on the DOM | no | yes |
场景
async下载完后立即执行,适用于要尽可能快的执行脚本
defer下载完后也需要等到文档解析完执行,适用于脚本中需要操作DOM
预加载
不会执行,只是下载和缓存
1 | |
参考链接
[1] https://html.spec.whatwg.org/multipage/scripting.html#attr-script-defer/
script加载
http://xrcol.github.io/2023/02/07/77efc5566626/
