정미나닷컴
[jQuery] jQuery를 이용한 xml 파싱 본문
* xml 파일
* 소스 파일
<?xml version="1.0" encoding="utf-8" ?>
- <root>
- <item>
<no>번호</no>
<title>제목</title>
<type>타입</type>
</item>
</root>
- <root>
- <item>
<no>번호</no>
<title>제목</title>
<type>타입</type>
</item>
</root>
* 소스 파일
$.ajax({
type: "get"
,dataType: "xml"
,url: "xml파일 주소"
,success: function(xml){
if($(xml).find("item").length > 0){ // null check
$(xml).find("item").each(function(){ // item 수만큼 loop
// item 요소 중 title 읽어오기.
var title = $(this).find("title").text();
});
}
}
,error: function(){ alert("xml error!!"); }
});
,dataType: "xml"
,url: "xml파일 주소"
,success: function(xml){
if($(xml).find("item").length > 0){ // null check
$(xml).find("item").each(function(){ // item 수만큼 loop
// item 요소 중 title 읽어오기.
var title = $(this).find("title").text();
});
}
}
,error: function(){ alert("xml error!!"); }
});
'IT' 카테고리의 다른 글
[XPath] XPath를 이용한 xml 파싱 (1) | 2010.08.19 |
---|---|
[jQuery] jQuery Form Plugin을 이용한 File Upload (0) | 2010.07.14 |
[JavaScript] 자바스크립트 iframe 자동 Resizing 함수 (0) | 2010.05.13 |
[JSP] JSP D-day 계산 (0) | 2010.04.27 |
[Oracle] 오라클 데이터 변환 함수 (0) | 2010.04.26 |