자바스크립트 XMLHttpRequest

Jmnote (토론 | 기여)님의 2016년 2월 4일 (목) 02:08 판 (새 문서: ==개요== ;자바스크립트 XMLHttpRequest <source lang='JavaScript'> var xhr = new XMLHttpRequest(); xhr.open("GET", "http://zetawiki.com/", false); xhr.send(); document.write(x...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

자바스크립트 XMLHttpRequest
var xhr = new XMLHttpRequest();
xhr.open("GET", "http://zetawiki.com/", false);
xhr.send();

document.write(xhr.status);
document.write(xhr.statusText);

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}