Skip to content

Instantly share code, notes, and snippets.

@azami
Last active August 29, 2015 14:01
Show Gist options
  • Save azami/b63cd075850fabc0ca41 to your computer and use it in GitHub Desktop.
Save azami/b63cd075850fabc0ca41 to your computer and use it in GitHub Desktop.
jQueryでファイルのアップロード
var fd = new FormData();
fd.append('file', $('input[type=file]')[0].files[0]);
$.ajax({url: 'api/thread/' + thread + '/upload',
type: 'POST',
data: fd,
processData: false,
contentType: false
}).done(function() {
document.location.reload();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment