Uploading multiple files asynchronously by blueimp jquery-fileupload

前端 未结 3 798
逝去的感伤
逝去的感伤 2020-11-30 13:42

I\'m using jQuery File Upload library (http://github.com/blueimp/jQuery-File-Upload), and I\'ve been stuck figuring out how to use the library satisfying the following condi

3条回答
  •  [愿得一人]
    2020-11-30 14:14

    The first POST request triggered by your script gets canceled, because the button submits the form (causing the second POST request).

    Use type="button" on the button if you don’t want it to have submit functionality.

提交回复
热议问题