submit success but upload not work at combine form

前端 未结 6 1017
迷失自我
迷失自我 2021-01-17 18:14

During trying to combine submit and upload in one form, I have a problem in upload but for submit form it\'s no problem.

JQuery + Ajax :

$(\"#oqcsubm         


        
6条回答
  •  醉梦人生
    2021-01-17 18:50

    It is impossible to send file input data via $.ajax only. I have successfully used jQuery form plugin http://malsup.com/jquery/form/. It wraps any form into AJAX processing, and adds a lot of useful callback options. It also does some clever things to handle file uploads. For older browsers (which do not support XHR Level 2) there might be some very minor additional server-side modifications, but otherwise it works out of the box.

    For specific docs on using jQuery form to handle file uploads see http://malsup.com/jquery/form/#file-upload

提交回复
热议问题