脚本运行时加载栏
我有一个 php 脚本,运行大约需要 10 秒,因为它正在提取数据并将其存储在数据库中,我想在该脚本运行时显示一个加载栏,然后一旦完成加载用户所在的页面。 ..有人知道我该怎么做吗?谢谢
I have a php script which takes about 10 seconds to run because it is pulling in data and storing it in the db, I want to display a loading bar whilst this script is running and then once its done load the page the user is on...has anybody any ideas how I can do this? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要使用 Ajax 请求调用脚本。所有 jQuery ajax 方法都提供在调用完成时调用的函数回调。您可以在发出请求时显示进度栏,并在完成时隐藏它:
您还可以使用像 BlockUI。
At first you need to call the script using an Ajax request. All jQuery ajax methods offer function callbacks that are called when the call is completed. You can show the progress bar when you make the request and hide it, when it is finished:
You could also use a plug-in like BlockUI.