如何使用window.location在新窗口中打开图像链接

时间:2014-02-03 00:28:43

标签: wordpress window.location

我在wordpress中添加了以下代码来隐藏状态栏。它有效,但我想在新窗口中打开链接。我怎么能这样做?

<img style='cursor:pointer;' src='http://www.killerpreseller.com/images2/buynow.gif' onclick="window.location='http://www.yahoo.com'"/>

2 个答案:

答案 0 :(得分:1)

使用包含图片的目标'_blank'的锚点

<a href='http://www.killerpreseller.com/images2/buynow.gif' target='_blank'>
   <img style='cursor:pointer;' src='http://www.killerpreseller.com/images2/buynow.gif' />
</a>

http://jsfiddle.net/Ree5t/

答案 1 :(得分:0)

您可以使用:

window.open('http://www.killerpreseller.com/images2/buynow.gif', '_blank');

根据How to simulate target="_blank" in JavaScript

这相当于设置了target ='blank'的锚标记。