在Firefox中显示位置栏

时间:2012-02-16 16:54:24

标签: javascript popup

当主窗口上隐藏了位置栏时,如何在FireFox弹出窗口中显示位置栏?下面的代码创建了一个弹出窗口但没有位置栏。

JS:

function newPopup(url) {
   popupWindow = window.open(
       url,'popUpWindow','height=300,width=400,location=yes');
}

HTML:

<a href="" onclick="return newPopup('http://www.mx7racing.com)">;pop with location bar</a>;

1 个答案:

答案 0 :(得分:0)

也许target =“_ blank”属性可以帮助您。

<a href="http://www.mx7racing.com" target="_blank">;pop with location bar</a>;