var xhr = new XMLHttpRequest();
xhr.open('POST', '/post.php', true);
xhr.setRequestHeader("Content-type", "multipart/form-data");
xhr.onreadystatechange = function() {
if(xhr.readyState == XMLHttpRequest.DONE && xhr.status == 200) {
console.log(xhr.responseText);
}
}
xhr.send({ form: 'data' });
print_r($_POST['form']); // возвращает пустые данные