协慌网

登录 贡献 社区

在新标签页或窗口中打开链接

是否可以在新选项卡中打开a href链接而不是相同的选项卡?

<a href="http://your_url_here.html">Link</a>

答案

您应该在锚标记中添加target="_blank"rel="noopener noreferrer"

例如:

<a target="_blank" rel="noopener noreferrer" href="http://your_url_here.html">Link</a>

资源:

您不应该决定是否应该在新标签页或新窗口中打开链接,因为最终应该通过用户浏览器的设置来完成此选择。有些人喜欢标签; 有些像新窗户。

使用_blank将告诉浏览器使用新的选项卡 / 窗口,具体取决于用户的浏览器配置以及他们如何单击链接(例如,中键单击, Ctrl + 单击或正常单击)。

<a>元素的target属性设置为"_tab"

编辑:它有效,但是 W3Schools 说没有这样的目标属性: http//www.w3schools.com/tags/att_a_target.asp

编辑 2:从我从评论中得出的结论。将目标设置为_blank 将带您进入新选项卡或窗口(取决于您的浏览器设置)。键入以下任何一个以外的任何内容将创建一个新的选项卡组(我不确定这些是如何工作的):

_blank  Opens the linked document in a new window or tab
_self   Opens the linked document in the same frame as it was clicked (this is default)
_parent Opens the linked document in the parent frame
_top    Opens the linked document in the full body of the window
framename   Opens the linked document in a named frame