Jquery Ajax Upload File (html5 FormData) PorYoung | 2018-5-22 11:01 | 224 | 0 | Notes 58 字 | 2 分钟 How to use Jquery Ajax to upload files with uploading progress get single file let data = $('input[tpye=file]')[0].files[0] let file = new FormData() file.append('file',data) … ajaxJquery