外部 .js 文件是否需要 <script>标签?

外部 .js 文件是否需要内部和包含标签才能工作?

Does an external .js file require internal and containing tags to work?

推荐答案

不,它们不是必需的,实际上如果包含它们会出现语法错误.

No, they're not needed, in fact you'll get a syntax error if you include them.

您的 .js 文件应包含 JavaScript,其周围没有 HTML 标记,就像在页面内一样.

Your .js files should contain only JavaScript, no HTML tags around it, like would have inside a page.

相关文章