Upload files with Ajax and Jquery
问题 I've been trying to figure out how to upload a file through ajax for the past several hours and nothing. Here's the code: HTML: <form action="" method="post" id="uploadForm" enctype="multipart/form-data"> <input type="file" name="image" id="image"> <input type="submit"> </form> JS: <script> jQuery(document).ready(function(){ jQuery('form#uploadForm').on('submit', function(e){ e.preventDefault(); var file = jQuery('#image')[0].files[0]; var form_data = new FormData( jQuery("form#uploadForm")[0