2

我在这样的模态框中制作了一个进度条

<div class="progress progress-info">
  <div class="bar" style="width: 0%"></div>
</div>

我像这样用ajax更改div的内容

function download_inicio()
{
    $.ajax(
    {
        url:'/inicio',
        cache: false,
        type: 'GET',
    }).done(function(web)
    {
        $('#contenido_nav_principal').fadeOut(600,function()//hide the div
        {
            $('#contenido_nav_principal').empty();// empty the div
            $('#contenido_nav_principal').html(web);//changing html 
            $('#contenido_nav_principal').fadeIn(600);// fade in the div
        });
    });
}

所以我想用从服务器接收数据的百分比来更新进度条...数据是从 url:/inicio 接收的 html

服务器在 nodejs 上监听

app.get('/inicio',routes.inicio.inicio);

全部!

4

0 回答 0