找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索本站精品资源

首页 教程频道 js教程 查看内容

window.location.href的用法是什么?

作者:模板之家 2020-4-23 15:01 4548人关注

window.location.href属性返回当前页面的URL,可以用于:1、在当前页面打开URL页面;2、在父页面打开URL页面;在顶层页面打开URL页面。

window.location 对象可用于获取当前页面地址(URL)并把浏览器重定向到新页面。

window.location 对象可不带 window 前缀书写。

window.location.href

window.location.href 属性返回当前页面的 URL。

在js中,window.location.href经常用于页面跳转。它主要有如下几种用法:

1、在当前页面打开URL页面。

需要注意的是window.location.href=window.location.hrefwindow.location.reload()都是刷新当前页面。区别在于是否有提交数据。当有提交数据时,window.location.Reload()会提示是否提交,window.location.href=window.location.href;则是向指定的url提交数据

self.location.href="url"
location.href="url"
window.location.href="url"
this.location.href="url"

2、在父页面打开URL页面。

parent.location.href="url"

3、在顶层页面打开URL页面。

top.location.href="url"

路过

雷人

握手

鲜花

鸡蛋
原作者: php中文网 来自: php中文网

全部回复(0)