一:提出問題php
使用js的同窗必定知道js的location.href的做用是什麼,可是在js中關於location.href的用法究竟有哪幾種,究竟有哪些區別,估計不少人都不知道了。html
blog已經遷移到這裏了,有更多文章,歡迎你們訪問。app
二:常見的幾種形式測試
目前在開發中常常要用到的幾種形式有:this
self.location.href; window.location.href; this.location.href; location.href; parent.location.href; top.location.href;
常常見到的大概有以上幾種形式。spa
那麼,這幾種形式的跳轉究竟有什麼區別呢?code
直接講定義,你確定不會理解透徹,下面我來貼四個html代碼,用實際的例子講解。orm
a.html:htm
<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:blog
<span>這是b.html</span><span id="span1"></span><br /> <iframe src="c.html" width="500px" height="300px"></iframe>
c.html:
<span><strong>這是c.html:<strong></span><span id="span1"></span><br /> <iframe src="d.html" width="500px" height="300px"></iframe>
d.html:
<span>這是d.html:</span><span id="span1"></span><br /> <input type='button' onclick='jump();' value='跳轉'>
a.html,b.html,c.html,d.html經過iframe給聯繫到了一塊兒,那麼它們有什麼的聯繫呢?
觀察代碼,咱們能夠看出:
a.html裏面嵌着b.html;
b.html裏面嵌着c.html;
c.html裏面嵌着d.html
運行a.html,貼圖一以下:
blog已經遷移到這裏了,有更多文章,歡迎你們訪問。
在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是最外層的頁面跳轉"的意思。
blog已經遷移到這裏了,有更多文章,歡迎你們訪問。