当用户单击“返回”时访问上一页的历史记录状态

发布于 2024-12-15 12:50:09 字数 46 浏览 0 评论 0原文

当用户单击“后退”按钮时,有没有一种方法可以使用 JS 访问上一页的历史状态?

Is there a way using JS of accessing the history state of the previous page when a user clicks the 'back' button?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

画离情绘悲伤 2024-12-22 12:50:10

不能随意读取前面的状态。

但是,如果用户向后导航并且存在使用 PushState 或 ReplaceState 设置的状态,那么您可以在 popstate 事件 像这样:


addEventListener("popstate", (event) => {

var state = window.history.state;
// or
state = event.state

});

浏览器执行的相关操作顺序,根据 文档,如下:

  • 文档的 URL 设置为新条目的 URL。
  • [...]
  • 如果 new-entry 保存了序列化状态信息,则
    信息被反序列化到History.state;否则,状态为空。
  • 如果 state 的值发生更改,则 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:


addEventListener("popstate", (event) => {

var state = window.history.state;
// or
state = event.state

});

The relevant order of actions the browser takes, according to the documentation, is as follows:

  • The document's URL is set to that of the new-entry.
  • [...]
  • If new-entry has serialized state information saved with it, that
    information is deserialized into History.state; otherwise, state is null.
  • If the value of state changed, the popstate event is sent to the document.
煮茶煮酒煮时光 2024-12-22 12:50:09

不幸的是,您无法阅读上一个或下一个状态。
您所能做的就是使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文