我有一个链接到网站的按钮,但我希望它在新窗口中打开。我知道它可能是一个愚蠢的问题,但我对javascript很新。以下是我的代码。它工作但在同一个窗口打开。我尝试了一些事情,他们只是不工作
<input type="button" value="eStore"
onclick="location='www.google.com'"
style="width: 88px; text-align: center;" />
有没有办法让targt_blank在新窗口中打开?拜托,谢谢你。
答案 0 :(得分:5)
使用此:
<input type="button" value="eStore"
onclick="window.open('http://www.google.com/','_blank')"
style="width: 88px; text-align: center;" />
答案 1 :(得分:0)
听起来您可能想要查看window.open(URL)
方法,而不是更改位置。
答案 2 :(得分:0)
试试这个:
onclick="javascript:window.open('www.google.com');"