在Jquery进度条上设置默认值

时间:2011-10-14 05:15:03

标签: javascript jquery html

我正在使用这个Jquery插件

http://t.wits.sg/misc/jQueryProgressBar/demo.php#

我只想在页面加载时在HTML中创建一个默认值....我不需要点击动作或任何动画......任何想法?

2 个答案:

答案 0 :(得分:1)

$(document).ready(function() {
    var defaultProgress = $("#progressbarVal").text();
    $("#YourID").progressBar(defaultProgress);
};

带有值的HTML div:

<div id="progressbarVal">40</div>

答案 1 :(得分:1)

初始化进度条时传递默认值 -

$("#pb1").progressBar(65); // Will have 65% as the default value

// Will have 95% as default value with additional options.
$("#pb4").progressBar(95, { showText: false, barImage: 'images/progressbg_red.gif'} );