在新选项卡中打开超链接,Everything应仅以HREF属性值编写

时间:2015-09-15 11:20:52

标签: javascript html

我有一个限制,即只能在锚标记中使用href属性,以便在新标签中打开URl。

所有的东西都应该以“HREF”的属性值书写,而不是在新TAB中打开URL。

是否可以使用上述限制在新标签页中打开网址?

2 个答案:

答案 0 :(得分:2)

<a href="javascript:window.open('http://www.google.com/');">…</a>

http://www.w3schools.com/jsref/met_win_open.asp

答案 1 :(得分:0)

我说<a href="http://www.test.com" target="_blank" /> Test </a>是一个更好的答案。

您正在使用Javascript复制原生HTML语法&amp;行为 - 可以关闭,从而使你的链接根本不起作用?