当主窗口上隐藏了位置栏时,如何在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>;
答案 0 :(得分:0)
也许target =“_ blank”属性可以帮助您。
<a href="http://www.mx7racing.com" target="_blank">;pop with location bar</a>;