JavaScript 标签、性能和 W3C
今天我在寻找网站优化内容,发现一篇文章讨论将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来自文档:
From the documentation:
这是有效的。脚本标签可以位于头部和主体中。将脚本标记移至结束正文标记之前将显着延长 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.
是的,
SCRIPT
元素 允许作为BODY元素
:
Yes, the
SCRIPT
element is allowed as child of theBODY
element: