html 에서 xml 파일 분석 (javascript 읽 기)

1206 단어 xml



George
John
Reminder
Don't forget the meeting!
Simth


이상 은 note. xml 의 내용 입 니 다.
아래 note. html 는 note. xml 를 분석 하 는 내용 입 니 다.




	
	
		function parseXML(){
			
			try{
				
				xmlDoc= new ActiveXObject("Microsoft.XMLDOM");
			}catch(e){
				
				try{
					
					xmlDoc= document.implementation.createDocument("","",null);
				}catch(e){
					
					alert(e.message);
					return;
				}
			}
			xmlDoc.async = false;
			xmlDoc.load("../xml/note.xml");
			
			document.getElementById("to").innerHTML=xmlDoc.getElementsByTagName("to")[0].childNodes[0].nodeValue;
			document.getElementById("from").innerHTML=xmlDoc.getElementsByTagName("from")[0].childNodes[0].nodeValue;
			document.getElementById("message").innerHTML=xmlDoc.getElementsByTagName("body")[0].childNodes[0].nodeValue;
		}
	



	

W3School.com.cn Internal Note

To:
From:
Message:


좋은 웹페이지 즐겨찾기