document.URL 与 location.href >没有结果

发布于 2024-10-20 01:17:29 字数 204 浏览 1 评论 0原文

我正在开发 Firefox 扩展。为此,我需要当前的 URL。我尝试了两种可能性,结果如下:

location.href   >  chrome://browser/content/browser.xul
document.URL    >  undefined

如果单击菜单按钮,则会调用它们。为什么它不起作用?

I am working on a Firefox extension. For this I need the current URL. I tried both possibilities with the following result:

location.href   >  chrome://browser/content/browser.xul
document.URL    >  undefined

They are called in the event if a menu button is clicked. Why is it not working?

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

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

发布评论

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

评论(1

甜嗑 2024-10-27 01:17:29

您正在访问 Firefox 的 DOM,而不是网页的 DOM。

要获取当前网页的 window 元素,您可以使用 window.内容

因此您可以通过window.content.location.href获取位置。

You are accessing Firefox's DOM, not the web page's one.

To get the window element for the current web page, you can use window.content.

So you can get the location via window.content.location.href.

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