在显示 success.jsp 一段时间(例如 2 秒)后如何返回 SaveUserDetails.html 文件?
我有一个 HTML 页面(SaveUserDetails.html),它在 servlet 的帮助下保存用户详细信息。 一旦用户成功保存详细信息,我就会向他显示 Success.jsp 文件。 我正在使用 response.sendRedirect("Success.jsp");用于重定向到成功页面 但问题是我希望 Success.jsp 在特定的时间间隔内显示。
谁能帮助我完成这个任务?
I have a HTML Page (SaveUserDetails.html) which saves user details with help of a servlet.
I am showing Success.jsp file to the User once he has saved the details successfully.
I am using response.sendRedirect("Success.jsp"); for re-directing to success page
But the problem is I want Success.jsp to be shown for a particular interval of time.
Can anyone help me to accomplish this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定你到底想说什么,看起来你自己解决了问题......无论如何我误解了,你希望它在 success.jsp 之后重定向到另一个页面,然后你可以使用 javascript 来完成它。
对于时间延迟,您可以使用 SetTimeOut
应该可以工作......
Not sure what u are tryin to say exactly, looks like u solved the problem urself ... in anycase i misunderstood, and u want it to redirect to another page after success.jsp then u can use javascript to get it done.
for the time delay you can use the SetTimeOut
should work ...