javascript 以编程方式设置进度条宽度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 以编程方式设置进度条宽度相关的知识,希望对你有一定的参考价值。

// Automate progress bar width based on length of fieldset in current_form

function progressWidths() {
    var questionCount = $('#' + current_form.form_id + ' fieldset').length;
    var eachWidth = 100 / questionCount;

    for (var i = 0; i < questionCount; i++) {

       $('#' + current_form.form_id +' .progress-bar')[i].style.width = [i + 1] * eachWidth + '%';
        console.log([i + 1] * eachWidth);
        
    }
}

以上是关于javascript 以编程方式设置进度条宽度的主要内容,如果未能解决你的问题,请参考以下文章

Swift - 以编程方式将 UIScrollView 宽度设置为 100%

如何以编程方式将图像放入进度条(WPF)

多个时如何以编程方式访问相对布局中的文本视图或进度条?

我们如何以编程方式在 Android Q OS 中实现可搜索的进度条?

突发奇想,JavaScript模仿下载进度条效果

Android:以编程方式将颜色设置为 ProgressBar