当前位置:网站首页>location.href用法

location.href用法

2022-08-09 08:56:00 l8487

top.location.href="/url"
说的是在顶层页面打开url
self.location.href="/url"
说的是仅本页面打开url地址
parent.location.href="/url"
说的是你窗口打开Url地址

应该还有一个this.location.href="/url"
用法和self的用法一致

还有就是如果页面当中有自定义的frame的话,
也可以将parent  self   top换为自定义frame的名称
效果就是在自定义frame窗口打开url地址

if(window != top){
   top.location.href="/login.aspx";
}

原网站

版权声明
本文为[l8487]所创,转载请带上原文链接,感谢
https://blog.csdn.net/l8487/article/details/2458726