获取 javascript 文件的路径
在 javascript 文件(例如 script.js)中,我需要一个包含该文件的绝对路径的变量。
我怎样才能动态地做到这一点?
谢谢。
In a javascript file (e.g. script.js) I need a variable that contains the absolute path to this file.
How can I do this dynamically?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个问题的答案 (天才,根本不知道这是可能的!)应该产生文件的完整 URL。不过,只有当传统上使用
script
标签包含脚本时,这才有效。The answer to this question (genius, didn't know this was possible at all!) should yield the full URL to the file. This will work only when the script is included traditionally using a
script
tag, though.同一问题的另一个答案:
我的脚本 src URL 是什么?
在上面的链接中,他们建议使用
我也不知道为什么,但你最好稍微调查一下。
Another answer to same question:
What is my script src URL?
in above link they suggest to use also
I don't know why, but you might better investigate it a bit.