如何在 html5、phonegap 和 jQuery 中创建进度条
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以查看 html5 中新的 进度标记。
此链接将向您显示哪些移动浏览器支持此标记。
You might check out the new progress tag in html5.
This link will show you which mobile browsers support this tag.
就像上面的例子一样,我有一个改进的。
http://docs.jquery.com/UI/Progressbar
可以导入JS和CSS文件在上面的链接中给出,然后您可以在 Android WebApp 上使用以下代码。
这将在延迟半秒后以 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.
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
http://docs.jquery.com/UI/Progressbar
只需使用
对于 STORED_DATA,尝试分区数据发送到数据库(例如 while 循环)。
http://docs.jquery.com/UI/Progressbar
Just use
For STORED_DATA, try to partition data sent to database ( while loop for example ).