我在magento中使用dropzone.js来上传文件.进度条工作正常,但我也想显示进度百分比.以下功能是为跨度添加样式.
uploadprogress: function(a, b) {
var c, d, e, f, g;
if (a.previewElement) {
for (f = a.previewElement.querySelectorAll("[data-dz-uploadprogress]"), g = [], d = 0, e = f.length; e > d; d++) c = f[d], g.push("PROGRESS" === c.nodeName ? c.value = b : c.style.width = "" + b + "%");
return g
}
},
Run Code Online (Sandbox Code Playgroud)
在下面的html中添加style ="width:xx%".
我还想显示%结果,其中g作为文本在上面的代码中返回,以便用户也可以看到这些数字.