interview-answe icon indicating copy to clipboard operation
interview-answe copied to clipboard

179.async 属性诞生的初衷

Open webVueBlog opened this issue 5 years ago • 1 comments

[js]

webVueBlog avatar Apr 15 '20 06:04 webVueBlog

把脚本元素放在文档体的底端(/body> 标签之前,与之相邻),这样脚本就可以在 HTML 解析完毕后加载了。

只有在所有 HTML DOM 加载完成后才开始脚本的加载/解析过程。对于有大量 JavaScript 代码的大型网站,可能会带来显著的性能损耗。这也是 async 属性诞生的初衷。

webVueBlog avatar Apr 15 '20 06:04 webVueBlog