Script Positioning 脚本位置
The HTML 4 specification indicates that a <script> tag may be placed inside of a <head> or <body> tag in an
HTML document and may appear any number of times within each. Traditionally, script> tags that are used to
load external JavaScript files have appeared in the <head>, along with <link> tags to load external CSS files and
other metainformation about the page. The theory was that it‘s best to keep as many style and behavior
dependencies together, loading them first so that the page will come in looking and behaving correctly. For
example:
HTML 4文档指出,一个<script>标签可以放在 HTML 文档的<head>或<body>标签中,可以在其中多次
出现。传统上,<script>标签用于加载外部 JavaScript 文件。<head>部分除此类代码外,还包含<link>标签
用于加载外部 CSS文件和其他页面中间件。也就是说,最好把风格和行为所依赖的部分放在一起,首先加
载他们,使得页面可以得到正确的外观和行为。例如:
HTML4 文档明确指出 一个script tag 可以 任意数量的 放到 HTML文档的 head tag 、 body tag 任一个 中 。
传统建议:1、 如果 script tag 用于引用 外部文件 放在 head tag 中最佳, 它并不是孤独的,关于 page 的一些元信息和 用于加载 外部css 代码的 link tag 将和它呆在一起。
2、最好按照 依赖关系 按顺序引用 js 和css 保证 page 的 appearance and behavior is right。
along with 连同 the page will come in looking and behaving correctly page 将在 样式 和行为 上是正确的。
句子不难理解 就是生词多。。。