【www.gdgbn.com--js教程】

下面我们如何显示一个XML文件作为一个HTML表吧,



<script type="text/javascript">
var xmlhttp;

function loadXMLDoc(url)
{
xmlhttp=null;
if (window.XMLHttpRequest)
  {// code for IE7, Firefox, Mozilla, etc.
  xmlhttp=new XMLHttpRequest();
  }
else if (window.ActiveXObject)
  {// code for IE5, IE6
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
if (xmlhttp!=null)
  {
  xmlhttp.onreadystatechange=onResponse;
  xmlhttp.open("GET",url,true);
  xmlhttp.send(null);
  }
else
  {
  alert("Your browser does not support XMLHTTP.");
  }
}

function onResponse()
{
if(xmlhttp.readyState!=4) return;
if(xmlhttp.status!=200)
  {
  alert("Problem retrieving XML data");
  return;
  }

txt="";
x=xmlhttp.responseXML.documentElement.getElementsByTagName("CD");
for (i=0;i   {
  txt=txt + "";
  xx=x[i].getElementsByTagName("TITLE");
    {
    try
      {
      txt=txt + "" + xx[0].firstChild.nodeValue + "";
      }
    catch (er)
      {
      txt=txt + " ";
      }
    }
  xx=x[i].getElementsByTagName("ARTIST");
    {
    try
      {
      txt=txt + "" + xx[0].firstChild.nodeValue + "";
      }
    catch (er)
      {
      txt=txt + " ";
      }
    }
  txt=txt + "";
  }
txt=txt + "";
document.getElementById("copy").innerHTML=txt;
}

</script>






本文来源:http://www.gdgbn.com/wangyezhizuo/17726/