所有现代浏览器都有读取和操作 XML 的内建 XML 解析器。
解析器把 XML 载入内存,然后把它转换为可通过 JavaScript 访问的 XML DOM 对象。
if (window.XMLHttpRequest) // IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
else // IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("GET","index.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;
document.getElementById("name").innerHTML=
xmlDoc.getElementsByTagName("name")[0].childNodes[0].nodeValue;
document.getElementById("school").innerHTML=
xmlDoc.getElementsByTagName("school")[0].childNodes[0].nodeValue;