JavaScript 标签、性能和 W3C

发布于 2024-09-01 07:51:00 字数 113 浏览 3 评论 0原文

今天我在寻找网站优化内容,发现一篇文章讨论将 JavaScript 脚本移动到 HTML 页面底部。这符合 W3C 的建议吗? 我了解到所有 JavaScript 都必须位于 head 标签内...... 谢谢。

Today I was looking for website optimization content and I found an article talking about move JavaScript scripts to the bottom of the HTML page. Is this valid with W3C's recommendations?
I learned that all JavaScript must be inside of head tag...
Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

み青杉依旧 2024-09-08 07:51:00

来自文档

该元素可以在 HTML 文档的 HEAD 或 BODY 中出现任意多次。

From the documentation:

This element may appear any number of times in the HEAD or BODY of an HTML document.

心是晴朗的。 2024-09-08 07:51:00

这是有效的。脚本标签可以位于头部和主体中。将脚本标记移至结束正文标记之前将显着延长 IE 中的渲染时间,因为脚本会阻止并行下载。

It is valid. Script tags can be in both the head and body. Moving the script tags to just prior to the closing body tag will significantly boost rendering time in IE, because scripts block parallel downloads.

绿光 2024-09-08 07:51:00

Yes, the SCRIPT element is allowed as child of the BODY element:

<!ELEMENT BODY O O (%block;|SCRIPT)+ +(INS|DEL) -- document body -->
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文