假设您有一个带有<div id="progressbar"></div>
以下代码将每 10 毫秒遍历一次进度条,直到达到 100:
<script type="text/javascript">
var i = 0; //variable used to count the steps
function myclick(){ // function called on a button click for example
var int = self.setInterval(
function(){
if (i == 100) window.clearInterval(int);
$( "#progressbar" ).progressbar("value", i);
i++;
}
, 10);
}
$('button').button().click(myclick); // a button element which will
// start the progress bar
$( "#progressbar" ).progressbar(); //this part sets up the progressbar
</script>
注意:其他答案也是有效的,我只发布了这个答案作为 IMO 尚未回答的问题的“如何正确使用进度条”部分的答案。