//1.XMLHttpRequest 객체 생성 varxhr=newXMLHttpRequest();
//2. 통신 상태 변화에 따른 콜백함수 정의 xhr.onreadystatechange = function(){ if( this.readyState == 0 ){ //open() 호출 전 console.log( "readyState(0) - unset" ); }elseif(this.readyState ==1){ //open() 호출 후 console.log( "readyState(1) - set" );
}elseif(this.readyState ==2){ //send() 호출 후 console.log( "readyState(2) - sent" );