如何在 html5、phonegap 和 jQuery 中创建进度条

发布于 2024-12-09 05:24:06 字数 170 浏览 0 评论 0原文

我正在使用 html5、phonegap 和 jquery mobile 创建一个 Android 网络应用程序。我想要做的是在运行将 sql 插入数据库的函数时创建一个进度条,通知客户端已经完成了多少以及还剩下多少。

您能指导我如何开始吗?我已经有了连接和插入数据到sql的功能。

非常感谢。

I am creating a web app for android using html5, phonegap and jquery mobile. What I want to do is create a progress bar while running a function that inserts sql to database, informing the client how many has been done and how much is there left.

Can you please direct me how to start this? I already have the functions to connect and insert data to sql.

many thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

煮酒 2024-12-16 05:24:06

您可以查看 html5 中新的 进度标记
此链接将向您显示哪些移动浏览器支持此标记。

You might check out the new progress tag in html5.
This link will show you which mobile browsers support this tag.

尤怨 2024-12-16 05:24:06

就像上面的例子一样,我有一个改进的。

http://docs.jquery.com/UI/Progressbar

可以导入JS和CSS文件在上面的链接中给出,然后您可以在 Android WebApp 上使用以下代码。

    $(function() {

        $("#progressbar").progressbar({ value: 10 });
        setTimeout(updateProgress, 500);

        });

        function updateProgress() {
          var progress;
          progress = $("#progressbar")
            .progressbar("option","value");
          if (progress < 100) {
              $("#progressbar")
                .progressbar("option", "value", progress + 5);
              setTimeout(updateProgress, 500);
          }
        }  

这将在延迟半秒后以 5 的增量移动进度。您可以根据需要修改它。

请告诉我这是否对您有帮助

亲切的问候,

总结

Just like an above example, I have an improved one.

http://docs.jquery.com/UI/Progressbar

You can import the JS and CSS file given on the link above and then you can use the below code on Android WebApp.

    $(function() {

        $("#progressbar").progressbar({ value: 10 });
        setTimeout(updateProgress, 500);

        });

        function updateProgress() {
          var progress;
          progress = $("#progressbar")
            .progressbar("option","value");
          if (progress < 100) {
              $("#progressbar")
                .progressbar("option", "value", progress + 5);
              setTimeout(updateProgress, 500);
          }
        }  

This will move the progress with the increment of five after delay of half second. You can modify it as per the need.

Please let me know if this helps you

Kind Regards,

Summved

千秋岁 2024-12-16 05:24:06

http://docs.jquery.com/UI/Progressbar

只需使用

$("#progressbar").progressbar({ value: ( STORED_DATA / TOTAL_DATA) });

对于 STORED_DATA,尝试分区数据发送到数据库(例如 while 循环)。

http://docs.jquery.com/UI/Progressbar

Just use

$("#progressbar").progressbar({ value: ( STORED_DATA / TOTAL_DATA) });

For STORED_DATA, try to partition data sent to database ( while loop for example ).

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