那些可以像火狐浏览器一样打开新浏览器的链接有什么魔力?

发布于 2024-11-15 11:02:27 字数 116 浏览 2 评论 0原文

<a ... target="_blank">...</a>

这种链接只会打开一个新选项卡,但有些网站会打开一个新的浏览器实例,有什么技巧呢?

<a ... target="_blank">...</a>

This kind of link only opens a new tab,but some websites will open a new browser instance,what's the trick?

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

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

发布评论

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

评论(2

萝莉病 2024-11-22 11:02:27

在 Firefox 中,在新选项卡或窗口中打开链接由浏览器的设置控制。有一些方法可以操纵它,例如:

window.open("", "test", "height=300,width=300,modal=yes,alwaysRaised=yes")

In Firefox, opening a link in a new tab or window is controlled by the browser's setting. There are ways to manipulate it such as:

window.open("", "test", "height=300,width=300,modal=yes,alwaysRaised=yes")
尐籹人 2024-11-22 11:02:27

如果所有这些网站中的两个链接都相同,则在打开新浏览器的链接中会调用 javascript window.open

它基于浏览器设置,这就是为什么我说如果所有链接看起来都相同并且有些链接的行为与其他链接不同,那么就需要一些 javascript 工作。

顺便一提,

如果将目标属性设置为
“_blank”,链接将在新窗口中打开
浏览器窗口或新选项卡。

基于浏览器设置

If both links are the same in all these websites, so there is a javascript window.open get called in the links which open new browser.

It is based on the browser settings, that why I said that if all links looks the same and some act different than other so there is some javascript work.

By the way,

If you set the target attribute to
"_blank", the link will open in a new
browser window or a new tab.

Based on the browser settings

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