美文网首页
window.location.href的用法

window.location.href的用法

作者: 逸曦穆泽 | 来源:发表于2020-09-16 15:42 被阅读0次

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 地址

相关文章

网友评论

      本文标题:window.location.href的用法

      本文链接:https://www.haomeiwen.com/subject/wvfhyktx.html