JS跳转阻止后退至上一页面,没有历史记录
emer 发布于 2022-3-17 10:10 1226 次阅读
window.location.replace
1
|
window.location.replace('要转向的页面') //不会有历史记录
|
1 2 3 4 |
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赋值
1
|
window.location.hash = 'hash的值'
|
会在window.history新增一条历史记录,如果想清除掉这条记录(不清除的话点击返回会回到上一个hash值的页面),可以使用
1
|
window.location.replace(window.location.href.toString().replace(window.location.hash, '') + "#
|