问题描述
- xmlrequest文件上传 进度
-
XMLrequest 跨域文件上传 上传可以跨域 进度不能跨域 大神们 求指点办法
解决方案
解决方案二:
onprogress 无效?能传获取进度应该不是问题才对
XMLHttpRequest Level 2新特性介绍
xhr.upload.onprogress = updateProgress;
function updateProgress(event) {
if (event.lengthComputable) {
var percentComplete = event.loaded / event.total;
}
}
时间: 2025-01-30 18:27:12