如何将脚本/链接打开到新窗口?

时间:2012-02-28 21:46:24

标签: javascript onclick

这些书签脚本在target =“_ self”中打开。如何在target =“_ blank”中打开脚本/链接?

此:

<a href="http://www.reddit.com/submit" onclick="window.location = 'http://www.reddit.com/submit?url=' + encodeURIComponent(window.location); return false"> <img src="http://www.reddit.com/static/spreddit7.gif" alt="submit to reddit" border="0" /> </a>

而且:

<script type="text/javascript" src="http://www.reddit.com/buttonlite.js?i=1"></script>

2 个答案:

答案 0 :(得分:2)

您可以使用window.open(...)方法

<a href="#" onclick="window.open('http://www.reddit.com/submit?url=' + encodeURIComponent(window.location));">open window</a>

答案 1 :(得分:0)

我没有真正得到上下文,但你可以尝试将target =“_ blank”属性放入你的-tag或使用window.open('http://www.reddit.com/submit?url= '+ encodeURIComponent(window.location));返回false;

我认为第二个是你的解决方案。