JS跳转阻止后退至上一页面,没有历史记录
window.location.replace
window.location.replace('要转向的页面') //不会有历史记录
let backLen = history.length
history.forward()
history.go(-backLen) // Return at the beginning
window.location.replace('/#/home')
window.location.hash
JS通过改变location.hash时清除history
通过使用以下方法来给hash赋值
window.location.hash = 'hash的值'
会在window.history新增一条历史记录,如果想清除掉这条记录(不清除的话点击返回会回到上一个hash值的页面),可以使用
window.location.replace(window.location.href.toString().replace(window.location.hash, '') + "#" + "hash的值")
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/02/25/js-jump-block-back-to-previous-page-no-history/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
打赏
海报
JS跳转阻止后退至上一页面,没有历史记录
window.location.replace
window.location.replace('要转向的页面') //不会有历史记录
let backLen = history.length
history.forward()
history.……
文章目录
关闭
共有 0 条评论