如何使用window.location使HTML href超链接打开一个新窗口?

时间:2012-11-11 22:06:46

标签: html hyperlink window.location

这是我的代码:

<a href="http://www.google.com" onClick="window.location.href='http://www.yahoo.com';return false;" target="_blank">test</a>

单击它时,它会将您带到Yahoo,但它没有打开新窗口?

3 个答案:

答案 0 :(得分:94)

<a href="#" onClick="window.open('http://www.yahoo.com', '_blank')">test</a>

这很容易。

或没有JS

<a href="http://yahoo.com" target="_blank">test</a>

答案 1 :(得分:1)

为了在新窗口中打开链接,添加Javascript命令

onclick="window.open('text-link.htm', 'name','width=600,height=400') 标签内的

<a>

<a href="../html-link.htm" target="popup" onclick="window.open('../html-link.htm','name','width=600,height=400')">Open page in new window</a>

答案 2 :(得分:0)

当您想打开新选项卡或浏览器用户首选项设置为打开新窗口而不是选项卡时,给出的答案可能会有所帮助,因为最初的问题是关于打开新窗口而不是选项卡,这对我有用。

<a href="#" onClick='window.open(url, "_blank", "resizable=yes, scrollbars=yes, titlebar=yes, width=800, height=600);'>test</a> 

Check this one too