원문 링크 http://api.jquery.com/jQuery.parseXML/
개요 : XML 문서를 파싱합니다.
- jQuery.parseXML( data )
- data well-formed XML 문자열
jQuery.parseXML
는 유효한 XML 문서에 대해 브라우져의 기본적인 기능으로 파싱을 합니다. 이 문서는 jQuery의 탐색과 조작 기능을 이용할 수 있습니다.
예 제
XML 문자열을 이용해 jQuery 오브젝트를 만들고 title 노드에 값을 추가합니다.
<!DOCTYPE html> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"></script> </head> <body> <p id="someElement"></p> <p id="anotherElement"></p> <script> var xml = "<rss version='2.0'><channel><title>RSS Title</title></channel></rss>", xmlDoc = $.parseXML( xml ), $xml = $( xmlDoc ), $title = $xml.find( "title" ); /* append "RSS Title" to #someElement */ $( "#someElement" ).append( $title.text() ); /* change the title to "XML Title" */ $title.text( "XML Title" ); /* append "XML Title" to #anotherElement */ $( "#anotherElement" ).append( $title.text() ); </script> </body> </html>
미리보기
XML 데이터 파싱해서 사용해야 합니다. 요 함수는 필수 유틸리티 함수네요. 잊지 마세요.
그럼 즐프하세요.
※ 본 예제는 http://www.jquery.com 에 있는 내용임을 밝힙니다.
'프로그래밍 > jQuery' 카테고리의 다른 글
jQuery.unique(), DOM 요소 배열에서 중복된 노드를 제거 (0) | 2012.07.02 |
---|---|
jQuery.type(), object 타입 알아내기 (0) | 2012.07.02 |
jQuery.trim(), 양쪽 끝 공백 제거 (0) | 2012.07.02 |
jQuery.removeData(), 데이터를 제거 (0) | 2012.07.02 |
jQuery.parseJSON(), JSON 문자열을 JavaScript object로 변환 (0) | 2012.07.02 |
jQuery.now(), 현재 시간을 number로 반환 (2) | 2012.07.02 |
jQuery.merge(), 두 개의 배열을 합치기 (1) | 2012.07.02 |
jQuery.map(), 새로운 배열 요소로 변경 (0) | 2012.07.02 |