如何用jQuery显示进度条?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用jQuery显示进度条?相关的知识,希望对你有一定的参考价值。
答案
另一答案
http://plugins.jquery.com/project/jQueryProgressBar
$(document).ready(function() {
$("#pb1").progressBar();
$("#pb2").progressBar({ barImage: 'images/progressbg_yellow.gif'} );
$("#pb3").progressBar({ barImage: 'images/progressbg_orange.gif', showText: false} );
$("#pb4").progressBar(65, { showText: false, barImage: 'images/progressbg_red.gif'} );
$(".pb5").progressBar({ max: 2000, textFormat: 'fraction', callback: function(data) { if (data.running_value == data.value) { alert("Callback example: Target reached!"); } }} );
$("#uploadprogressbar").progressBar();
});
要么
http://docs.jquery.com/UI/Progressbar
$("#progressbar").progressbar({ value: 37 });
另一答案
你可以使用Tips for Twits中的一个。 Here's a demo。
另一答案
本教程可能对您有很大帮助。它至少会告诉你从哪里开始!
http://www.youtube.com/watch?v=bYTRKfcG6Rg
以上是关于如何用jQuery显示进度条?的主要内容,如果未能解决你的问题,请参考以下文章