如何将进度条百分比限制为仅100%

时间:2014-06-01 11:01:36

标签: javascript jquery html css twitter-bootstrap-3

我的问题是,当我尝试运行它并尝试更改浏览器中的标签页然后再次返回时,百分比超过100%作为最终结果。但是,如果我在进度运行时没有更改标签,那就完美了。

enter image description here

HTML

<div class="container">
    <div class="progress progress-striped active">
        <div class="bar" style="width: 0%;"></div>
    </div>
</div>

CSS

@import url('//netdna.bootstrapcdn.com/bootstrap/2.3.2/css/bootstrap.min.css');
 .container {
    margin-top: 30px;
    width: 400px;
}

的Javascript

var progress = setInterval(function () {
    var $bar = $('.bar');

    if ($bar.width() >= 400) {
        clearInterval(progress);
        $('.progress').removeClass('active');
    } else {
        $bar.width($bar.width() + 40);
    }
    $bar.text($bar.width() / 4 + "%");
}, 800);

小提琴:http://jsfiddle.net/5w5ku/1/

1 个答案:

答案 0 :(得分:7)

设置为限制,这将起作用:

替换此行:

$bar.text($bar.width() / 4 + "%");

这一行:

$bar.text(Math.min($bar.width() / 4,100)+"%");