開啟URL頁面的方法

2021-10-02 04:11:01 字數 581 閱讀 7541

1、在當前頁面開啟url頁面

self.location.href

window.location.href

this.location.href

location.href

2、在父頁面開啟新頁面

parent.location.href

3、在頂層頁面開啟新頁面

top.location.href

4、在新視窗開啟頁面

window.open

5、window.location和window.open的區別

window.location是window物件的屬性,而window.open是window物件的方法 ;

window.location是只能在乙個**中開啟本**的網頁 ,window.open是可以在乙個**上開啟另外的乙個**; 

window.location是你對當前瀏覽器視窗的url位址物件的參考,window.open是用來開啟乙個新視窗的函式;

在iframe框架中開啟頁面的方法

iframe開啟視窗 在左框中開啟鏈結 在右框中開啟鏈結 技巧 在用指令碼中設定目標框架的location屬性值也可以達到同樣的目的。如 onclick document.frames right location this.href return false 在名為right的框架中開啟鏈結 特別...

獲取當前頁面的URL

window location host 返回url 的主機部分,例如 www.com window location hostname 返回www.com window location href 返回整個url字串 window location pathname 返回 a index.php或...

獲取當前頁面的url

獲取當前頁面的url,可以使用window.location.href 如果想進一步獲取到主機名,埠號等可以直接使用 window.location.host 主機名加埠號 window.location.hostname 主機名 window.location.origin 協議主機名埠號 win...