window.location.href 跳转无历史记录

Posted wong-do

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window.location.href 跳转无历史记录相关的知识,希望对你有一定的参考价值。


需求:从页面a单点登录跳至页面b,在页面b里做判断符合条件后location.href至c页面

问题:在页面c中点击返回按钮页面回到了a,正常情况下应该回到页面b

原因:在当前页面的 onload 事件发起之前,location.href 也是替换当前历史记录,但我是写在window.onload里的啊,不知道为什么也不行,打印history确实只有两条记录。

解决方法一:加延时器setTimeout,能解决问题,但是不友好

方法二:pushState,手动添加一条记录

history.pushState(null,null,‘b.html)
window.location.href = ‘/c.html‘

ok!

以上是关于window.location.href 跳转无历史记录的主要内容,如果未能解决你的问题,请参考以下文章

window.location.href进行页面跳转+传参数

为啥window.location.href无效,页面不跳转

window location跳转

js中 window.location.href 怎样可以不断地跳转

window.location.href/replace/reload()/页面跳转+替换+刷新

window.location.href 跳转的页面如果有异常怎么办