6

我有html代码。我需要一些javascript代码来更新每次迭代的值

<progress id="progressBar" max="100" value="0"></progress>


for (i = 0; i <= 100; i ++) {
    //update progress bar
}

我尝试做这样的事情:

var progressBar = document.getElementById("progressBar");
progressBar.value += i;

但这不起作用。循环完成时更新进度条。

4

7 回答 7

3

您需要使用 setTimeout 编写一个异步循环,如下所示:

var counter = 0;
(function asyncLoop() {

    $('#progressBar').val(counter++);
    if (counter <= 100) {
        setTimeout(asyncLoop, 50);
    }
})();
于 2013-02-08T14:06:11.120 回答
3

对于虚拟进度条,我会这样做:

html

<div id="progress">
    <span class="progress-text"></span>
    <div class="progress-bar"></div>
</div>

CSS

#progress {
    position:relative;
    width:250px;
    height:20px;
    border:1px solid red;
}

#progress .progress-bar {
    background:blue;
    height:20px;
    width:0%;
    display:inline-block;
}

#progress .progress-text {
    position:absolute;
    z-index:2;
    right:0;
}

jQuery

$(document).ready(function() {
    var progression = 0,
    progress = setInterval(function() 
    {
        $('#progress .progress-text').text(progression + '%');
        $('#progress .progress-bar').css({'width':progression+'%'});
        if(progression == 100) {
            clearInterval(progress);
            alert('done');
        } else
            progression += 10;

    }, 1000);
});

jsFiddle

您也可以使用JQueryUI 进度条

于 2013-02-08T14:24:17.153 回答
3

我为此苦苦挣扎了几天,最后把我学到的东西放到了下面这个相当简单的解决方案中,它在 HTML 页面上放置了一个按钮和一个进度条。

单击按钮时,javascript 开始计数,并随着计数的进行更新进度条。计数在按钮定义中设置为默认值 4321,但您可以将其更改为您选择的任何值。

<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Progress Bar Demo</title>
<script>
var button;
var count;
var countmax;
var progressbar;
var timerID;

function start(max) {
    button = document.getElementById("button");
    count = 0;
    countmax = max;
    progressbar = document.getElementById("bar");
    progressbar.max = countmax;

    timerID = setInterval(function(){update()},10);
}//end function

function update() {
    button.innerHTML = "Counting to " + countmax;
    count = count + 100;
    progressbar.value = count;
    if (count >= countmax) {
        clearInterval(timerID);
        button.innerHTML = "Ready";
        progressbar.value = 0;
    }//end if
}//end function

</script>
</head>

<body>
<p>
    <button onclick="start(4321)" id="button" style="font-size:18px;">Ready</button><br>
    <br>
    <progress id="bar" value="0"></progress>
</p>
</body>
</html>
于 2014-06-20T07:30:44.147 回答
0
$("#progressBar").prop("value",i); 

应该将属性值设置为该循环中的任何 i

于 2013-02-08T14:06:13.180 回答
0
$("#progressbar").progressbar({ value: i });
于 2013-02-08T14:08:11.030 回答
0

我知道这篇文章很旧,但以防万一有人需要它一段时间:

$("progress").val(i);

将根据 value 更改进度值i


例如,要上传图像,您可以使用 jquery-form 库<script src="http://malsup.github.com/jquery.form.js"></script>。因此,您可以在此库的函数中更新您的progresshtml 标签,uploadProgress如下所示:

uploadProgress: function(event, position, total, percentComplete) {
    progressBar.val(percentComplete);
},

如果您想使用标签并在编码中更清楚一点,请参见此处的 jquery-form 演示并将其与上述知识混合。progress

我希望它可以帮助某人。

于 2016-03-27T19:47:49.593 回答
0

Beware the "must be enough" timeouts, they highly depend on each machine's speed. I discovered that $('progress#id').text(Math.random()) forces the UI to redraw.

于 2016-10-22T09:02:40.590 回答