$(function () { //$.fn.progressbar.defaults.value = 30; $('#box').progressbar({ width : 400, //设置总长度 height : 30, value : 30, text : '{value}%', //默认值一般不要改这里 onChange : function (newValue, oldValue) { //值发生改变的时候触发 console.log('新:' + newValue + ',旧:' + oldValue); }, }); /* setTimeout(function () { $('#box').progressbar('setValue', 70); //设置进度 }, 1000); $('#box').progressbar('getValue') //获取进度 setInterval(function () { //动画效果,到100%自动停止 $('#box').progressbar('setValue', $('#box').progressbar('getValue') + 5); }, 200); */ //console.log($('#box').progressbar('options')); //$('#box').progressbar('resize', 600); //设置总长度 });