使用jquery初始化引导进度条

时间:2017-02-14 10:28:10

标签: javascript jquery ajax twitter-bootstrap

我正在使用一个引导进度条,它被设置为零

  <div class="progress-bar progress-bar-success" id="p1"
    role="progressbar" aria-valuenow="0"
    aria-valuemin="0" aria-valuemax="100" style="width:0%">

我使用以下jquery代码初始化进度条

    $.ajax({
        type: "POST",
        dataType: "json",
        url: "myurl.php",
        data: data
    }).done(function(msg) {
    console.log(msg);
    var pid = msg.pid;
    var colour = msg.colour;
    var comp = msg.comp;
    console.log('pid = ' + pid);
    console.log('colour = ' + colour);
    document.getElementById(pid).style.width = comp;
    document.getElementById(pid).innerHTML = comp + '% Complete';   
    document.getElementById(pid).classList.add(colour); 
    });

我从ajax请求中获取有效数据

Object {pid: "p1", comp: 7, colour: "progress-bar-success"}

但是,进度条不会更新。如果我初始化html中的栏以1%开头,它可以使用上面的代码。有没有办法使用jquery初始化?

1 个答案:

答案 0 :(得分:1)

你必须添加&#34;%&#34;当您设置进度条的宽度时;

document.getElementById(pid).style.width = comp + "%";

Jquery解决方案

$("#"+pid ).css('width', comp + "%");