那么在 HTML 页面上,当您链接到 JavaScript 文件时,它与实际存在的文件是否相同(如 php 中的 include()),还是所有内容都必须相对于 js 文件所在的文件夹?

例如,如果我有 ,是图片文件到js文件'image.png''../image .png'

So on a HTML page, when you link to a JavaScript file, is it the same as it actually being there (like include() in php) or does everything have to be relative to the folder that the js file is in?

eg if I have <script src="scriptage/my.js"> </script> in index.html, is a image file to the js file 'image.png' or '../image.png'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

会发光的星星闪亮亮i 2024-11-09 14:45:40

JavaScript 没有文件的概念。尽管某些扩展可能提供文件读/写 API,但一切都与文档有关。

JavaScript has no concept of files. Although certain extensions may provide file read/write APIs, everything is relative to the document.

晨与橙与城 2024-11-09 14:45:40

就像 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

带刺的爱情 2024-11-09 14:45:40

您的图像应该与 JavaScript 文件相关,而不是与调用文档相关。

Your images should be relative to the JavaScript file, not the calling document.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文