ajax를 사용하려면 jquery를 불러오는건 필수다.
그렇지 않게 하려면 순수 자바스크립트로 짜야하는데 그 방법은
XMLHttpRequest을 사용하면 된다.
기본 사용 법은 간단하다.
var xhr = new XMLHttpRequest();
xhr.open('post', 'url');
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
console.log(xhr.responseText);
} else alert("요청오류 : " + xhr.status);
}
}
xhr.send(form);