火狐插件页面 url

发布于 2024-11-02 23:02:37 字数 200 浏览 4 评论 0原文

我有一个 Firefox 插件,我必须在其中获取调用网页的 URL。
我的调用网页在 default.aspx 中作为 radwindow 打开。
当我使用 window.content.document.location.href 时,它返回默认页面地址。

如何获取打开的radwindow的URL?

I have a Firefox addon, in which I have to obtain the URL of the calling web page.
My calling web page is opened as a radwindow inside default.aspx.
When I use window.content.document.location.href, it returns the default page address.

How can I obtain the URL of the opened radwindow.

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

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

发布评论

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

评论(1

残疾 2024-11-09 23:02:37

你可以尝试用这个例子,

 function GetRadWindow() {   
    var oWindow = null;   
    if (window.radWindow) oWindow = window.radWindow; //Will work in Moz in all cases, including clasic dialog   
    else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow; //IE (and Moz az well)   
    return oWindow;   
}   

GetRadWindow().BrowserWindow.location.href; 

You can try with this example,

 function GetRadWindow() {   
    var oWindow = null;   
    if (window.radWindow) oWindow = window.radWindow; //Will work in Moz in all cases, including clasic dialog   
    else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow; //IE (and Moz az well)   
    return oWindow;   
}   

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