AJAX 예
먼저 예제를 살펴보겠습니다.
<!DOCTYPE html> <html> <head> <script> function loadXMLDoc() { var xmlhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("myDiv").innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","/try/ajax/ajax_info.txt",true); xmlhttp.send(); } </script> </head> <body> <div id="myDiv"><h2>使用 AJAX 修改该文本内容</h2></div> <button type="button" onclick="loadXMLDoc()">修改内容</button> </body> </html>
예제 분석
위의 AJAX 애플리케이션에는 div와 버튼이 포함되어 있습니다.
div 섹션은 서버의 정보를 표시하는 데 사용됩니다. 버튼을 클릭하면 loadXMLDoc()이라는 함수를 호출합니다.
<!DOCTYPE html> <html> <body> <div id="myDiv"><h2>Let AJAX change this text</h2></div> <button type="button" onclick="loadXMLDoc()">Change Content</button> </body> </html>
다음으로 페이지의 헤드 섹션에 <script> 태그를 추가합니다. 이 태그에는 loadXMLDoc() 함수가 포함되어 있습니다:
<head> <script> function loadXMLDoc() { .... AJAX script goes here ... } </script> </head>
참고: ajax_info.txt 및 HTML 파일은 실행하려면 동일한 가상 호스트 또는 동일한 웹 사이트에 배치되어야 합니다.