Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

여러 진행률 표시줄이 있는 HTML5 파일 업로드


제대로 작동하려면 모든 목록 항목이 이미 생성되었을 때 발생하는 xhr 진행 이벤트를 해결해야 합니다.

xhr 무엇을 하고 싶은지 알아야 합니다 -

var a = new XMLHttpRequest();
a.upload.li = li;

a.upload.addEventListener('progress', function(e) {
   var pc = parseInt(event.loaded / event.total * 100);
   this.li.find(".progressbar").width(pc);
}, false);