在显示 success.jsp 一段时间(例如 2 秒)后如何返回 SaveUserDetails.html 文件?

发布于 2024-12-08 18:48:33 字数 214 浏览 0 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

沉默的熊 2024-12-15 18:48:33

不确定你到底想说什么,看起来你自己解决了问题......无论如何我误解了,你希望它在 success.jsp 之后重定向到另一个页面,然后你可以使用 javascript 来完成它。

function redirectFunction(){
window.location = "../someOtherJsp" }

对于时间延迟,您可以使用 SetTimeOut

<body onLoad="setTimeout('redirectFunction()', 2000)">

应该可以工作......

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.

function redirectFunction(){
window.location = "../someOtherJsp" }

for the time delay you can use the SetTimeOut

<body onLoad="setTimeout('redirectFunction()', 2000)">

should work ...

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