Differences between revisions 2 and 3
Revision 2 as of 2005-08-20 17:07:48
Size: 451
Editor: 211
Comment: in altlang
Revision 3 as of 2006-01-22 14:13:16
Size: 486
Editor: 127
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
[XML] [HTTP] Request. 본 기술을 이용하는것을 통틀어 [AJAX]라고도 한다. [XML] [HTTP] Request. JavaScript에서 사용됨. 본 기술을 이용하는것을 통틀어 [AJAX]라고도 한다.
Line 3: Line 3:
http://jibbering.com/2002/4/httprequest.html
http://jpspan.sourceforge.net/wiki/doku.php?id=javascript:xmlhttprequest
 * http://jibbering.com/2002/4/httprequest.html
 * http://jpspan.sourceforge.net/wiki/doku.php?id=javascript:xmlhttprequest

[XML] [HTTP] Request. JavaScript에서 사용됨. 본 기술을 이용하는것을 통틀어 [AJAX]라고도 한다.

관련포스트

JavaScript sample

req = new XMLHttpRequest();
req.open("GET", url, true);
req.onreadystatechange = callback;
...

XMLHTTPRequest (last edited 2011-08-16 14:39:27 by 211)