1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| $('#button').click(function(){ var data=new FormData($('#form')[0]); $.ajax({ url:'test.php', data:data, type:'post', xhr: function(){ myXhr = $.ajaxSettings.xhr(); if(myXhr.upload){ myXhr.upload.addEventListener('progress',progressFunc, false); } return myXhr; }, success:function(data){ alert(data); }, processData: false, contentType: false }) })
function progressFunc(e) { if (e.lengthComputable) { var percentComplete=e.loaded/e.total*100; $('progress').attr('value',percentComplete); } }
|