document.URL 与 location.href >没有结果
我正在开发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在访问 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 usewindow.content
.So you can get the location via
window.content.location.href
.