脚本运行时加载栏

发布于 2024-10-21 04:07:05 字数 100 浏览 1 评论 0原文

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

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

发布评论

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

评论(1

清引 2024-10-28 04:07:05

首先,您需要使用 Ajax 请求调用脚本。所有 jQuery ajax 方法都提供在调用完成时调用的函数回调。您可以在发出请求时显示进度栏,并在完成时隐藏它:

$("#MyProgressBar").show();
$("#placeholder").load(myurl, function() {
  $("#MyProgressBar").hide();
});

您还可以使用像 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:

$("#MyProgressBar").show();
$("#placeholder").load(myurl, function() {
  $("#MyProgressBar").hide();
});

You could also use a plug-in like BlockUI.

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