gpt4 book ai didi

16、HTML 页面显示 XML 数据

转载 作者:大佬之路 更新时间:2024-01-21 22:42:32 24 4
gpt4 key购买 nike

接下来的范例,我们打开一个 XML 文件 ( "cd_catalog.xml" ),然后遍历每个 CD 元素,并显示 HTML 表格中的 ARTIST 元素和 TITLE 元素的值:

<html>
<body>
<script>
if (window.XMLHttpRequest)
{
  xmlhttp=new XMLHttpRequest();
}

xmlhttp.open("GET","/static/media/cd_catalog.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML; 
document.write("<table border='1'>");
var x=xmlDoc.getElementsByTagName("CD");
for (i=0;i<x.length;i++)
  { 
  document.write("<tr><td>");
  document.write(x[i].getElementsByTagName("ARTIST")[0].childNodes[0].nodeValue);
  document.write("</td><td>");
  document.write(x[i].getElementsByTagName("TITLE")[0].childNodes[0].nodeValue);
  document.write("</td></tr>");
  }
document.write("</table>");
</script>
</body>
</html>

如果想要深入学习 JavaScript 和 XML DOM ,请移步我们的 XML DOM 基础教程

24 4 0
文章推荐: 19、XML CDATA
文章推荐: 05、XML 语法规则
文章推荐: 21、服务器上的 XML
文章推荐: 13、XML HttpRequest 对象
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com