μ± μΌλ‘λ λμ μκ³ , μ μμ λΈλ‘κ·Έμλ μ 리λμ΄ μλ μ κΉμ μλ°μ€ν¬λ¦½νΈλ₯Ό μ½μλ€.
λ€μμ λ²νΌμ λλ₯΄λ©΄ μ μμ λΈλ‘κ·Έ μλ¬ΈμΌλ‘ μ΄λν μ μλ€. π ν΄λ¦ π
var xhr = new XMLHttpRequest();
button.onclick = function(){
xhr.open("http://unikys.tistory.com/");
xhr.onreadystatechange = function (){
if (xhr.readyStatus === 4 && xhr.status === 200){
element.innerHTML = xhr.responseText;
};
};
xhr.send();
};