码迷,mamicode.com
首页 > Web开发 > 详细

详解location.href几种用法的区别【JS跳转】

时间:2016-04-19 19:48:42      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

 一:提出问题

使用js的同学一定知道js的location.href的作用是什么,但是在js中关于location.href的用法究竟有哪几种,究竟有哪些区别,估计很多人都不知道了。

二:常见的几种形式

目前在开发中经常要用到的几种形式有:

1 self.location.href;
2 window.location.href;
3 this.location.href;
4 location.href;
5 parent.location.href;
6 top.location.href;                                            


经常见到的大概有以上几种形式。

三:代码部分

那么,这几种形式的跳转究竟有什么区别呢?

直接讲定义,你肯定不会理解透彻,下面我来贴四个html代码,用实际的例子讲解。

a.html:

1 <form id="form1" action="">
2 <div><strong>这是a.html页面<strong>
3 <iframe src="b.html" width="500px" height="300px"></iframe> </strong></strong></div>
4 </form>
5 <pre>
b.html:
1 <span>这是b.html</span><span id="span1"></span><br />
2 <iframe src="c.html" width="500px" height="300px"></iframe>
c.html:
1 <span><strong>这是c.html:<strong></span><span id="span1"></span><br />
2 <iframe src="d.html" width="500px" height="300px"></iframe>
d.html:
1 <span>这是d.html:</span><span id="span1"></span><br />
2 <input type=‘button‘ onclick=‘jump();‘ value=‘跳转‘>
3 <iframe src="d.html" width="500px" height="300px"></iframe>
a.html,b.html,c.html,d.html通过iframe给联系到了一起,那么它们有什么的联系呢?

观察代码,我们可以看出:

a.html里面嵌着b.html;
b.html里面嵌着c.html;
c.html里面嵌着d.html

运行a.html,贴图一如下:

技术分享

四:测试几种用法

下面来测试上述几种写法.

在d.html里面head部分写js:

01 <strong>function jump()
02 {
03 //经测试:window.location.href与location.href,self.location.href,location.href都是本页面跳转
04 //作用一样
05 window.location.href="http://www.baidu.com";
06 //location.href="http://www.baidu.com";
07 //self.location.href="http://www.baidu.com";
08 //this.location.href="http://www.baidu.com";
09 //location.href="http://www.baidu.com";
10 } </strong>
再次运行a.html,点击那个"跳转" 按钮,运行结果贴图二如下:

技术分享

对比图一和图二的变化,你会发现d.html部分已经跳转到了百度的首页,而其它地方没有发生变化。这也就解释了"本页跳转"是什么意思。

好,再来修改d.html里面的js部分为:

1 function jump()
2 {
3 parent.location.href=‘http://www.baidu.com‘;
4 }
运行a.html后,再次点击"跳转" 按钮,运行结果贴图三如下:技术分享


对比图一和图三,你会发现a.html中嵌套的c.html部分已经跳转到了百度首页。

分析:我点击的是a.html中嵌套的d.html部分的跳转按钮,结果是a.html中嵌套的c.html部分跳转到了百度首页,这就解释了"parent.location.href是上一层页面跳转"的意思。
再次修改d.html里面的js部分为:

1 function jump()
2 {
3 top.location.href=‘http://www.baidu.com‘;
4 }
运行a.html后,再次点击"跳转" 按钮,

你会发现,a.html已经跳转到了百度首页。

分析:我点击的是a.html中嵌套的d.html部分的跳转按钮,结果是a.html中跳转到了百度首页,这就解释了"top.location.href是最外层的页面跳转"的意思。

五:总结

看完上面的讲解之后,在来看看下面的定义你就会非常明白了:
"top.location.href"是最外层的页面跳转
"window.location.href"、"location.href"是本页面跳转
"parent.location.href"是上一层页面跳转.


 一:提出问题

使用js的同学一定知道js的location.href的作用是什么,但是在js中关于location.href的用法究竟有哪几种,究竟有哪些区别,估计很多人都不知道了。

二:常见的几种形式

目前在开发中经常要用到的几种形式有:

1 self.location.href;
2 window.location.href;
3 this.location.href;
4 location.href;
5 parent.location.href;
6 top.location.href;                                            


经常见到的大概有以上几种形式。

三:代码部分

那么,这几种形式的跳转究竟有什么区别呢?

直接讲定义,你肯定不会理解透彻,下面我来贴四个html代码,用实际的例子讲解。

a.html:

1 <form id="form1" action="">
2 <div><strong>这是a.html页面<strong>
3 <iframe src="b.html" width="500px" height="300px"></iframe> </strong></strong></div>
4 </form>
5 <pre>
b.html:
1 <span>这是b.html</span><span id="span1"></span><br />
2 <iframe src="c.html" width="500px" height="300px"></iframe>
c.html:
1 <span><strong>这是c.html:<strong></span><span id="span1"></span><br />
2 <iframe src="d.html" width="500px" height="300px"></iframe>
d.html:
1 <span>这是d.html:</span><span id="span1"></span><br />
2 <input type=‘button‘ onclick=‘jump();‘ value=‘跳转‘>
3 <iframe src="d.html" width="500px" height="300px"></iframe>
a.html,b.html,c.html,d.html通过iframe给联系到了一起,那么它们有什么的联系呢?

观察代码,我们可以看出:

a.html里面嵌着b.html;
b.html里面嵌着c.html;
c.html里面嵌着d.html

运行a.html,贴图一如下:

技术分享

四:测试几种用法

下面来测试上述几种写法.

在d.html里面head部分写js:

01 <strong>function jump()
02 {
03 //经测试:window.location.href与location.href,self.location.href,location.href都是本页面跳转
04 //作用一样
05 window.location.href="http://www.baidu.com";
06 //location.href="http://www.baidu.com";
07 //self.location.href="http://www.baidu.com";
08 //this.location.href="http://www.baidu.com";
09 //location.href="http://www.baidu.com";
10 } </strong>
再次运行a.html,点击那个"跳转" 按钮,运行结果贴图二如下:

技术分享

对比图一和图二的变化,你会发现d.html部分已经跳转到了百度的首页,而其它地方没有发生变化。这也就解释了"本页跳转"是什么意思。

好,再来修改d.html里面的js部分为:

1 function jump()
2 {
3 parent.location.href=‘http://www.baidu.com‘;
4 }
运行a.html后,再次点击"跳转" 按钮,运行结果贴图三如下:技术分享


对比图一和图三,你会发现a.html中嵌套的c.html部分已经跳转到了百度首页。

分析:我点击的是a.html中嵌套的d.html部分的跳转按钮,结果是a.html中嵌套的c.html部分跳转到了百度首页,这就解释了"parent.location.href是上一层页面跳转"的意思。
再次修改d.html里面的js部分为:

1 function jump()
2 {
3 top.location.href=‘http://www.baidu.com‘;
4 }
运行a.html后,再次点击"跳转" 按钮,

你会发现,a.html已经跳转到了百度首页。

分析:我点击的是a.html中嵌套的d.html部分的跳转按钮,结果是a.html中跳转到了百度首页,这就解释了"top.location.href是最外层的页面跳转"的意思。

五:总结

看完上面的讲解之后,在来看看下面的定义你就会非常明白了:
"top.location.href"是最外层的页面跳转
"window.location.href"、"location.href"是本页面跳转
"parent.location.href"是上一层页面跳转.

首先贴出来网上找的demo,在和小明做的如果·微营销的过程中,要修改一个后台模板,
    <frameset border=0 framespacing=0 rows="60, *" frameborder=0>
        <frame name=head src="./head.html" frameborder=0 noresize scrolling=no>
            <frameset cols="170, *">
                <frame name=left src="./left.html" frameborder=0 noresize />
                <frame name=right src="./right.html" frameborder=0 noresize scrolling=yes />
            </frameset>
    </frameset>
    <noframes>
    </noframes>
后台代码是这个样子,然后在left.html里面的一个a链接跳转到另一个php页面,结果直接在frame里面跳转,其他的frame没有变化,因此百度了一下,发现默认的当前框架跳转,因此
<a href="javascript:toAdd();">添加商品</a>
function toAdd(){
<span style="white-space:pre">	top.location.href= "add.html";</span>
}
就得到了想要的效果。


详解location.href几种用法的区别【JS跳转】

标签:

原文地址:http://blog.csdn.net/esther_heesch/article/details/51190135

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!