67

这是我的代码:

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

当你点击它时,它会把你带到雅虎,但它没有打开一个新窗口?

4

3 回答 3

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

就这么简单。

或者没有 JS

<a href="http://yahoo.com" target="_blank">test</a>
于 2012-11-11T22:12:28.253 回答
5

为了在新窗口中打开链接,添加 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>
于 2021-05-14T09:47:46.630 回答
2

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

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

也检查这个

于 2021-04-28T06:58:30.733 回答