2012-02-16 62 views
0

位置欄隱藏在主窗口上時,如何在FireFox彈出窗口中顯示位置欄?下面的代碼創建一個彈出窗口,但沒有位置欄。在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

您不能更改地址欄設置 - 它的瀏覽器偏好和使用代碼將開闢安全問題 – ManseUK 2012-02-16 17:02:22

回答

0

也許TARGET = 「_空白」 屬性可以幫助你。

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

我測試過這使得它的隱藏/顯示。不幸的是,它不起作用。 – Sparky1 2012-02-17 16:49:45