new AjaxUpload($('input.partupload'), {
autoSubmit: true,
action: '/Home/UploadFile',
onComplete: function (file) {
alert("complate")
}
});
我使用 AjaxUpload 上传文件,并希望在其上设置进度条。我在 Google 中找不到解决方案。
new AjaxUpload($('input.partupload'), {
autoSubmit: true,
action: '/Home/UploadFile',
onComplete: function (file) {
alert("complate")
}
});
我使用 AjaxUpload 上传文件,并希望在其上设置进度条。我在 Google 中找不到解决方案。