如何使用 JavaScript 触发浏览器的后退事件/功能?

发布于 2024-12-14 00:24:37 字数 67 浏览 0 评论 0原文

我想使用 JavaScript(或 PHP,如果可能)通过页面模板中的超链接触发浏览器的后退功能。有谁知道如何实现这个?

I want to trigger the browser's back functionality through a hyperlink in my page template, using JavaScript (or PHP if possible). Does anyone know how to implement this?

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

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

发布评论

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

评论(1

相对绾红妆 2024-12-21 00:24:37

history.back() 应该可以解决问题。

MDN 上的 window.history.back() 文档

作为顺便说一句,如果您意外地对用户执行此操作,那么用户体验会很差。例如,我输入了无效的信用卡号,你让我返回一页,而不是让我纠正错误。

因此,虽然可以使用 JavaScript 来操作历史堆栈,但最好仅在当前用户操作的上下文中有意义时才这样做。

history.back() should do the trick.

window.history.back() documentation at MDN

As an aside, it's bad user experience if you do this unexpectedly on the user. For example, I enter in an invalid credit card number, and you take me back one page, instead of letting me fix the mistake.

So while it's possible to use javascript to manipulate the history stack, it's better to only do so if it makes sense in the context current users actions.

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