<script language="javascript" type="text/javascript">
var info_xml; 
function xhai_GetXML(){
    info_xml = new ActiveXObject("Microsoft.XMLDOM");
    info_xml.async=true;
    info_xml.onreadystatechange = GetReady;
    info_xml.load("info.xml")
}function GetReady(){
 if(info_xml.readyState==4){
     if(info_xml.parseError.errorCode==0){
   var Basicname = info_xml.documentElement.selectNodes("//Info//basic//name");
   var age = info_xml.documentElement.selectNodes("//Info//basic//age");
   var sex = info_xml.documentElement.selectNodes("//Info//basic//sex");
   var description = info_xml.documentElement.selectNodes("//Info//description");
   alert(Basicname[0].text +":"+age[0].text+":"+sex[0].text+":"+description[0].text);
    }
}}
xhai_GetXML();
</script>