window.location.href的用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window.location.href的用法相关的知识,希望对你有一定的参考价值。
参考技术A javascript 中的 location.href 有很多种用法,主要如下:self.location.href="/url" 当前页面打开
location.href="/url" 当前页面打开
windows.location.href="/url" 当前页面打开,前面三个用法相同
this.location.href="/url" 当前页面打开
parent.location.href="/url" 在父页面打开新页面
top.location.href="/url" 在顶层页面打开新页面
location.open("/url"); 打开一个新的窗口页
如果页面中自定义了 frame ,那么可将 parent self top 换为自定义 frame 的名称,效果是在 frame 窗口打开 url 地址
location.href的几种用法
self.location.href;
window.location.href;
this.location.href;
location.href;
parent.location.href;
top.location.href;
window.location.href与location.href,self.location.href,location.href都是本页面跳转
"parent.location.href是上一层页面跳转"
"top.location.href是最外层的页面跳转"
以上是关于window.location.href的用法的主要内容,如果未能解决你的问题,请参考以下文章
window.location.href和window.open的几种用法和区别