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"
推荐教程:js教程
以上就是window.location.href的用法是什么?的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号