外部 .js 文件是否需要
外部 .js 文件是否需要内部标签才能工作?
Does an external .js file require internal and containing tags to work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
外部 .js 文件是否需要内部标签才能工作?
Does an external .js file require internal and containing tags to work?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
不,它们不是必需的,事实上,如果包含它们,您会收到语法错误。
您的
.js
文件应仅包含 JavaScript,其周围不包含 HTML 标记,就像页面内的 HTML 标记一样。No, they're not needed, in fact you'll get a syntax error if you include them.
Your
.js
files should contain only JavaScript, no HTML tags around it, like would have inside a page.不,事实并非如此。外部文件只需要代码。
然后你只需要执行
。
No, it does not. The external file just needs the code.
Then you just need to do
<script src="file.js" type="text/javascript"></script>
.外部 Javascript 不应包含标签。
External Javascript should not contain tag.
不,不需要
标签,否则会发生错误。
例如,
external.js
具有带有标记的
alert
功能。external.js:
然后,将
external.js
添加到index.html
中。index.html:
然后,出现错误。 (我使用
谷歌浏览器
)因此,只有
alert
函数没有标签就可以了。
外部.js:
No,
<script>
tags are not needed otherwise error occurs.For example,
external.js
hasalert
function with<script>
tags.external.js:
Then,
external.js
is added toindex.html
.index.html:
Then, error occurs. (I used
google chrome
)So, only
alert
function is fine without<script>
tags.external.js: