如何使用 JavaScript 触发浏览器的后退事件/功能?
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.