window.location.href的用法
Posted tongcc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window.location.href的用法相关的知识,希望对你有一定的参考价值。
1.
window.location.href=window.location.href; 刷新当前页面,向指定的url提交数据
window.location.Reload():刷新当前页面。window.location.Reload()会提示是否提交
2.
self.location.href="/url" 当前页面打开URL页面
location.href="/url" 当前页面打开URL页面
windows.location.href="/url" 当前页面打开URL页面,前面三个用法相同。
this.location.href="/url" 当前页面打开URL页面
parent.location.href="/url" 在父页面打开新页面
top.location.href="/url" 在顶层页面打开新页面
以上是关于window.location.href的用法的主要内容,如果未能解决你的问题,请参考以下文章
window.location.href和window.open的几种用法和区别