我导入了jquery.UploadiFive.min.js
文件,当我尝试一次上传多个文件时,单个进度条显示波动,因为它为每个条目传递了已下载和总计的事件。请建议如何消除波动。
以下是向进度条添加波动的功能
. onProgress : function(file, e) {
$("#bar_container").show();
if (e.lengthComputable) {
var percent = Math.round((e.loaded / e.total) * 100);
}
var pos = percent + "%";
var nooffiles = nofile + 1;
$(".progresstext").text("Uploading " + nooffiles + " of " + MyFilesTotal);
$(".progress").animate({ 'width': pos }, 200).text(percent + "%");
}
- Parmanand Punewar 4