如何避免点击浏览器后退按钮后返回?
我正在使用jsp和jquery。
登录后,显示主页,但是当我单击浏览器的后退按钮时,它再次显示登录页面。
当我点击后退按钮时,我希望它重定向到主页,就像 GMail 那样。
I am using jsp and jquery.
After logging in, the home page is displayed, but when I click on the back button of browser, it show me log in page again.
When I click on the back button, I want it to redirect to the home page, like GMail does.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需在登录页面检查是否有人登录,如果是则重定向到主页。这里不需要魔法。
Simply check if someone is logged in at the login page, and if so redirect to the homepage. No magic necessary here.
在登录页面检查用户是否登录是一个很好的做法。如果用户已登录,则将他/她重定向到您想要的页面,否则登录他。
It is a good practice to check whether a user is login or not in login page. If user is login then redirect him/her to your desired page, otherwise login him.