使用js的同窗必定知道js的location.href的做用是什麼,可是在js中關於location.href的用法究竟有哪幾種,究竟有哪些區別,估計不少人都不知道了。html
目前在開發中常常要用到的幾種形式有:框架
//var url = "www.baidu.com"; self.location.href="url"; //1.僅在本頁面打開url window.location.href="url"; //2.當前頁面打開URL頁面 this.location.href="url"; //3.用法和self.location.href一直 location.href="url"; //4.當前頁面打開URL頁面 parent.location.href="url"; //5.在父窗口打開此url窗口 top.location.href="url";//6.在頂層頁面打開url(跳出框架)
那麼,這幾種形式的跳轉究竟有什麼區別呢?測試
直接講定義,你確定不會理解透徹,下面我來貼四個html代碼,用實際的例子講解。this
a.html:url
<form id="form1" action=""> <div><strong>這是a.html頁面<strong> <iframe src="b.html" width="500px" height="300px"></iframe> </strong></strong></div> </form> <pre>
b.html:spa
<span>這是b.html</span><span id="span1"></span><br /> <iframe src="c.html" width="500px" height="300px"></iframe>
c.html:code
<span><strong>這是c.html:<strong></span><span id="span1"></span><br /> <iframe src="d.html" width="500px" height="300px"></iframe>
d.html:orm
<span>這是d.html:</span><span id="span1"></span><br /> <input type='button' onclick='jump();' value='跳轉'>
a.html,b.html,c.html,d.html經過iframe給聯繫到了一塊兒,那麼它們有什麼的聯繫呢?htm
觀察代碼,咱們能夠看出:blog
a.html裏面嵌着b.html; b.html裏面嵌着c.html; c.html裏面嵌着d.html
運行a.html,貼圖一以下:
在d.html裏面head部分寫js:
function jump() { //經測試:window.location.href與location.href,self.location.href,location.href都是本頁面跳轉 //做用同樣 window.location.href="http://www.baidu.com"; //location.href="http://www.baidu.com"; //self.location.href="http://www.baidu.com"; //this.location.href="http://www.baidu.com"; //location.href="http://www.baidu.com"; }
再次運行a.html,點擊那個"跳轉" 按鈕,運行結果貼圖二以下:
對比圖一和圖二的變化,你會發現d.html部分已經跳轉到了百度的首頁,而其它地方沒有發生變化。這也就解釋了"本頁跳轉"是什麼意思。
好,再來修改d.html裏面的js部分爲:
function jump() { parent.location.href='http://www.baidu.com'; }
運行a.html後,再次點擊"跳轉" 按鈕,運行結果貼圖三以下:
對比圖一和圖三,你會發現a.html中嵌套的c.html部分已經跳轉到了百度首頁。
分析:我點擊的是a.html中嵌套的d.html部分的跳轉按鈕,結果是a.html中嵌套的c.html部分跳轉到了百度首頁,這就解釋了"parent.location.href是上一層頁面跳轉"的意思。 再次修改d.html裏面的js部分爲:
function jump() { top.location.href='http://www.baidu.com'; }
運行a.html後,再次點擊"跳轉" 按鈕,
你會發現,a.html已經跳轉到了百度首頁。
分析:我點擊的是a.html中嵌套的d.html部分的跳轉按鈕,結果是a.html中跳轉到了百度首頁,這就解釋了"top.location.href是最外層的頁面跳轉"的意思。
看完上面的講解以後,在來看看下面的定義你就會很是明白了:"top.location.href"是最外層的頁面跳轉"window.location.href"、"location.href"是本頁面跳轉"parent.location.href"是上一層頁面跳轉.