일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Form Stuff
- 스카이 안드로이드폰 시리우스 K양 동영상
- 안드로이드폰
- 인기있는 블로그 만들기
- SKY 시리우스
- 안드로이드 개발
- 안드로이드 개발 강좌
- 안드로이드 배경화면
- 안드로이드 바탕화면
- 아이폰 바탕화면
- 스카이 안드로이드폰 시리우스
- 하루한마디영어
- 하루 한마디 영어
- 구글 안드로이드
- 안드로이드 2.0 개발
- 스마트폰 배경화면
- android
- 안드로이드2.0개발
- 안드로이드개발
- 안드로이드2.0
- 구글안드로이드
- 영어
- 아이폰 배경화면
- 안드로이드 개발 2.0
- objective-c
- 안드로이드 개발 2.0 강좌
- 안드로이드
- 구글 안드로이드 개발
- MapView
- sky 시리우스폰
- Today
- Total
moozi
ajax01.html 본문
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ajax</title>
<script>
function createRequest(){
var request;
try{
request=new XMLHttpRequest();
}
catch(exception){
//IE6.0이하 처리.
try{
request=new ActiveXObject('Msxml2.XMLHTTP');
}catch(innerException){
request=new ActiveXObject('Microsoft.XMLHTTP');
}
}
return request;
}
// function ajax(){
var request=createRequest();//ajax처리객체
request.onreadystatechange=function(event){
if(request.readyState==4){
if(request.status==200){ var xml=request.responseXML;//xml을 받음
var names=xml.getElementsByTagName("name");
var prices=xml.getElementsByTagName("price");
for(var i=0;i<names.length;i++){
var name=names[i].childNodes[0].nodeValue;
var price=prices[i].childNodes[0].nodeValue;
document.body.innerHTML+="<h1>"+name+"</h1>";
document.body.innerHTML+="<h1>"+price+"</h1>"
}
}
}
}
request.open("GET","data.xml",true);//연결
request.send();//요청
//alert(request.responseText);//응답
// }
</script>
</head>
<body>
</body>
</html>
'TIS_2016 > HTML5_3기' 카테고리의 다른 글
ajax연습문제01 (0) | 2016.08.08 |
---|---|
ajax02.html (0) | 2016.08.08 |
map.html - 마커아이콘변경, 마커클릭시 infowindow띄우기 (0) | 2016.08.05 |
jQueryMobile연습문제02 (0) | 2016.08.05 |
slider.html (0) | 2016.08.05 |