在同一窗口的新选项卡中打开链接

发布于 2024-09-01 06:16:54 字数 243 浏览 9 评论 0原文

您好,我正在制作一个 Firefox 扩展,它需要在同一 Firefox 窗口的新选项卡中打开一个链接。我应该怎么做? 这将在新窗口中打开(替换旧窗口):

window.location = url;

这将在同一选项卡中打开

window.content.document.location = url

任何想法如何在新选项卡中打开网址?

Hi I am making a firefox extension which needs to open a link in anew tab in the same window of firefox. How should i do this?
This opens in a new window (replacing the old window):

window.location = url;

This opens in the same tab

window.content.document.location = url

Any idea on how to open the url in a new tab?

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

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

发布评论

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

评论(2

找回味觉 2024-09-08 06:16:54

您尝试过window.open(url)吗?我猜测专门在新选项卡(而不是新窗口)中打开是无法通过 JavaScript 控制的浏览器行为的一部分。

Have you tried window.open(url)? I'm guessing opening specifically in a new tab (as opposed to a new window) is part of the browser behavior that can't be controlled via JavaScript.

溺ぐ爱和你が 2024-09-08 06:16:54

这行得通,伙计们! :))

var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"] .getService(Components.interfaces.nsIWindowMediator);

var mainWindow = wm.getMostRecentWindow("navigator:browser");

mainWindow.gBrowser.selectedTab = mainWindow.gBrowser.addTab("http://google.com");

This works guys! :))

var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"] .getService(Components.interfaces.nsIWindowMediator);

var mainWindow = wm.getMostRecentWindow("navigator:browser");

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