jquery ui进度条的实现代码

发布时间:2020-11-30编辑:脚本学堂
分享一个jquery ui进度条的实现代码,jquery ui类库在进度条方面的使用实例,一个完整的jquery进度条代码,感兴趣的朋友参考下。

例子,jquery/jindutiao/ target=_blank class=infotextkey>jquery进度条代码
 

复制代码 代码示例:
<!doctype html>
<html>
<head>
<meta charset="utf8" />
<title>progressbar</title>
<style type="text/css">
#divprogressbar{
 width:300px;
 height:30px;
}
.progress-label{
 float:left;
 margin-left:40%;
 margin-top:3px;
 
}
</style>
<link  rel="stylesheet" href="css/jquery-ui-1.10.4.min.css"  media="screen"/>
<script type="text/javascript" src="js/jquery-1.10.2.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.10.4.min.js"></script>
</head>
<body>
<div id="divprogressbar"><div class="progress-label">loading...</div></div>
<script type="text/javascript">
//jquery进度条核心代码
$(function(){
//  var val=0;
 $('#divprogressbar').progressbar({value:0});
 $('#divprogressbar').progressbar({
  value:0,
  change:function(){
$(".progress-label").text($("#divprogressbar").progressbar("value")+"%");
  },
  complete:function(){
$(".progress-label").text("Complete!");
  }
 
  });
 function progress(){
 var val= $('#divprogressbar').progressbar("value") || 0;
 $('#divprogressbar').progressbar("option","value",val+1);
 if(val<99)
 {
 setTimeout(progress,100);
 }
 }
 setTimeout(progress,1000);
}
);
</script>
</body>
</html>
 

  
jquery进度条,效果图:
jquery进度条

jquery ui文档:http://jqueryui.com/progressbar/