“
那么在 HTML 页面上,当您链接到 JavaScript 文件时,它与实际存在的文件是否相同(如 php 中的 include()),还是所有内容都必须相对于 js 文件所在的文件夹?
例如,如果我有 ,是图片文件到js文件
'image.png'
或'../image .png'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
JavaScript 没有文件的概念。尽管某些扩展可能提供文件读/写 API,但一切都与文档有关。
JavaScript has no concept of files. Although certain extensions may provide file read/write APIs, everything is relative to the document.
就像 php include() 一样,它与附加脚本的文件的路径相关。就像这里的index.html
Just like the php include(), it relates to the path of the file where you have attached the script. like here index.html
您的图像应该与 JavaScript 文件相关,而不是与调用文档相关。
Your images should be relative to the JavaScript file, not the calling document.