在新选项卡或窗口中打开链接
这个问题在这里已经有了答案:
您应该使用值_blank
在锚标记中添加target
属性。
例如:
<a target="_blank" href="http://your_url_here.html">Link</a>
来源:MDN | HTML元素<a>
| 属性target
您不应该打电话来决定链接是在新标签还是在新窗口中打开,因为最终该选择应该由用户浏览器的设置完成。 有些人喜欢标签; 有些像新的窗户。
使用_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
链接地址: http://www.djcxy.com/p/20167.html
上一篇: Open link in new tab or window
下一篇: blank" vs. target="