获取 javascript 文件的路径

发布于 2024-08-29 05:42:32 字数 92 浏览 7 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(2

不语却知心 2024-09-05 05:42:32

这个问题的答案 (天才,根本不知道这是可能的!)应该产生文件的完整 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.

瑶笙 2024-09-05 05:42:32

同一问题的另一个答案:

我的脚本 src URL 是什么?

在上面的链接中,他们建议使用

scripts[scripts.length-1].getAttribute('src', -1)

我也不知道为什么,但你最好稍微调查一下。

Another answer to same question:

What is my script src URL?

in above link they suggest to use also

scripts[scripts.length-1].getAttribute('src', -1)

I don't know why, but you might better investigate it a bit.

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