热门IT资讯网

_window.location.href的作用有哪些

发表于:2024-11-27 作者:热门IT资讯网编辑
编辑最后更新 2024年11月27日,今天小编给大家分享的是_window.location.href的作用有哪些,相信很多人都不太了解,为了让大家更加了解_window.location.href的作用,所以给大家总结了以下内容,一起往

今天小编给大家分享的是_window.location.href的作用有哪些,相信很多人都不太了解,为了让大家更加了解_window.location.href的作用,所以给大家总结了以下内容,一起往下看吧。一定会有所收获的哦。

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

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

_window.location.href

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

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

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

需要注意的是_window.location.href=_window.location.href_window.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"

以上就是_window.location.href的作用有哪些的简略介绍,当然详细使用上面的不同还得要大家自己使用过才领会。如果想了解更多,欢迎关注行业资讯频道哦!

0