当用户单击“返回”时访问上一页的历史记录状态
当用户单击“后退”按钮时,有没有一种方法可以使用 JS 访问上一页的历史状态?
Is there a way using JS of accessing the history state of the previous page when a user clicks the 'back' button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不能随意读取前面的状态。
但是,如果用户向后导航并且存在使用 PushState 或 ReplaceState 设置的状态,那么您可以在 popstate 事件 像这样:
浏览器执行的相关操作顺序,根据 文档,如下:
You can not read the previous states arbitrarily.
However if the user navigates back and there is a state that was set using pushState or replaceState then you can access it inside the popstate event like so:
The relevant order of actions the browser takes, according to the documentation, is as follows:
不幸的是,您无法阅读上一个或下一个状态。
您所能做的就是使用
history.state
读取当前状态。但是,如果这一切都发生在同一页面上而无需重新加载,为什么不将数据保存在您自己的堆栈上。您可以使用数组来实现此目的 - 只需将相同的数据保存到数组和新状态即可。
Unfortunately you're not allowed to read previous or next states.
All you can do is reading current state, using
history.state
.But if it all happens on the same page without reloads, why don't you save data on you own stack. You can use array for this - just save the same data to array and new state.