POST を使用して xmlhttprequest を使用しようとしていますが、「Uncaught SyntaxError: Unexpected end of input」というエラーが表示されます。
xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState === 4 && xhr.status === 200) {
console.log("saved data!");
}
}
xhr.open("POST", "http://website.com/login.php", true);
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhr.send("user=ben&pass=abcxyz");