может поможет. вот пример отправки файла на сервер :
var form = document.forms.namedItem("fileinfo");
form.addEventListener('submit', function (e) {
e.preventDefault();
var fd = new FormData(form);
fd.append("action", "upload_diagram_image");
jQuery.ajax({
url: base_url,
type: "POST",
data: fd,
enctype: 'multipart/form-data',
processData: false, // tell jQuery not to process the data
contentType: false // tell jQuery not to set contentType
}).done(function (data) {
if (data !== 'error') { //
}
});
return false;
});