window.open在所有浏览器的新选项卡中弹出窗口链接

时间:2014-04-10 14:44:52

标签: php html

我有一个HTML代码,在新的弹出窗口中打开谷歌地图 - 我想改为,它将在新标签中打开,你能帮我吗?

<a href="#" onclick="var popupWin = window.open(&quot;http://maps.google.com/;width=800,height=900,scrollbars=1,resizable=1,location=0&quot;);popupWin.focus(); return false;">View in Google Maps</a>

谢谢

1 个答案:

答案 0 :(得分:-1)

据我所知,如果你在FireFox和Chrome中使用target="_blank",它会打开一个新标签。其他浏览器将依赖于您无法控制的自己的偏好。

更新:仔细查看代码后,似乎很困惑。你的语法不正确。 window.open使用以下语法:

window.open('URL', 'name', 'specs', 'replace');

  • 请注意逗号(,)不是分号(;)来分隔参数。

您还指定了新标签的尺寸,因为新标签规格与当前浏览器窗口相同,所以没有意义。

如果您想打开新标签,请尝试以下操作:

<a href="http://maps.google.com/" target="_blank">View in Google Maps</a>