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

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/15551779/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-29 06:43:59  来源:igfitidea点击:

Open link in new tab or window

htmltabshyperlinkwindowhref

提问by Rene

Is it possible to open an a hreflink in a new tab instead of the same tab?

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

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

回答by Nathan

You should add the target="_blank"and rel="noopener noreferrer"in the anchor tag.

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

For example:

例如:

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

Adding rel="noopener noreferrer"is not mandatory, but it's a recommended security measure. More information can be found in the links below.

添加rel="noopener noreferrer"不是强制性的,但它是推荐的安全措施。更多信息可以在下面的链接中找到。

Source:

来源:

回答by Gauthier

It shouldn't be your call to decide whether the link should open in a new tab or a new window, since ultimately this choice should be done by the settings of the user's browser. Some people like tabs; some like new windows.

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

Using _blankwill tell the browser to use a new tab/window, depending on the user's browser configuration and how they click on the link (e.g. middle click, Ctrl+click, or normal click).

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

回答by Toon Casteele

set the targetattribute of your <a>element to "_tab"

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

EDIT: It works, however W3Schools says there is no such target attribute: http://www.w3schools.com/tags/att_a_target.asp

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

EDIT2: From what I've figured out from the comments. setting target to _blank will take you to a new tab or window (depending on your browser settings). Typing anything except one of the ones below will create a new tab group (I'm not sure how these work):

EDIT2:从我从评论中了解到的。将 target 设置为 _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

回答by Ehsan

You can simply do that by setting target="_blank", w3schools has an example.

您可以通过设置简单地做到这一点target="_blank",w3schools 有一个例子