点击新窗口上的链接打开新页面

时间:2010-04-12 08:42:36

标签: javascript html internet-explorer-8

我有一个页面,其中我提供了一个链接点击,该链接应该重定向到新窗口上的新页面。

我的代码是

<a href="javascript:void(0);" class="webMnu" onclick="window.open('http://abc.com','plain');">Enroll</a>

问题是它在firefox中工作正常(在新标签中打开)但在Internet Explorer中它在弹出窗口中打开(不在新标签中)。

如何在新标签页中打开此新页面?

请帮我解决这个问题。

由于

的Pankaj

1 个答案:

答案 0 :(得分:5)

你想要

<a href="http://abc.com" target="_blank">Enroll</a>

window.open用于弹出窗口,如果你只想要一个新的浏览器窗口/标签,target = _blank就是你的朋友。