$(function () {
$("#box").progressbar({
300, //宽度
height: 20, //高度
value: 10, //进度
text: '1111', //进度条上显示的数字,默认值'{value}%' 一般不改
onChange: function (newValue, oldValue) {
console.log('新' + newValue + "旧:" + oldValue);
},
});
//setTimeout(function () {
// $("#box").progressbar('setValue', 70); //一秒后进度到70%
//}, 1000);
setInterval(function(){
$("#box").progressbar('setValue', $("#box").progressbar('getValue')+5) //进度条每0.2秒进5% 动画效果
}, 200);
});