jsp中倒计时
我想在我的 jsp 页面中进行简单的倒计时,例如 1%,然后用 2% 替换,依此类推。 实际上我想展示一个过程的进度。有谁可以帮助我吗..
谢谢
I want to make a simple count down like 1% then it replace with 2% and so on.. in my jsp page.
Actually i want to show progress of a process. Is any one can help me..
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用 jquery ui 的进度条组件: http://jqueryui.com/demos/progressbar/< /a>
如果您要监视的进程在服务器上运行,您可能需要某种 javascript 后台作业,每隔 3-5 秒向服务器询问当前进度并更新进度栏。
I would suggest to use the progress bar component of jquery ui: http://jqueryui.com/demos/progressbar/
If the process you want to monitor runs on the server, you might have to have some kind of javascript background job, that asks the server for the current progress every say 3-5 seconds and updates the progress bar.