-
Notifications
You must be signed in to change notification settings - Fork 116
代码245、246行含有两个错误,导致无法显示已上传的大小 #9
Copy link
Copy link
Open
Description
文件jquery.Huploadify.js在245、246行含有两个错误:
eleProgress.nextAll('.progressnum.uploadedsize').text(formatFileSize(loaded)); eleProgress.nextAll('.progressnum .totalsize').text(formatFileSize(total));
这样写是找不到uploadedsize和totalsize元素的,要写成
eleProgress.nextAll('.progressnum').find('.uploadedsize').text(formatFileSize(loaded)); eleProgress.nextAll('.progressnum').find('.totalsize').text(formatFileSize(total));
这样才对。
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels