那些可以像火狐浏览器一样打开新浏览器的链接有什么魔力?
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Firefox 中,在新选项卡或窗口中打开链接由浏览器的设置控制。有一些方法可以操纵它,例如:
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:
如果所有这些网站中的两个链接都相同,则在打开新浏览器的链接中会调用 javascript
window.open
。它基于浏览器设置,这就是为什么我说如果所有链接看起来都相同并且有些链接的行为与其他链接不同,那么就需要一些 javascript 工作。
顺便一提,
基于浏览器设置
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,
Based on the browser settings