ajax调用的加载百分比

时间:2014-10-16 16:40:51

标签: jquery ajax

我使用以下内容进行文件上传。我想显示一个显示文件上传进度百分比的进度条?

  <input type="file" name="file" id="file"> 

和ajax

  $.ajax({
                url: "/uploadImage",
                type: "POST",
                crossDomain : true,
                data: new FormData($("form")[0]),
                contentType: false,
                processData: false,
                success: function( d) {
                     location.href="uploaddone.html";
                },
                error: function( d) {
                    location.href="Error.html";
                }
            }); 

1 个答案:

答案 0 :(得分:0)

也许检查一下,它有你需要的信息。 http://devpro.it/upload_progress/

基本上,您需要继续检查服务器上的文件大小与预期大小,以确定百分比