教程集 www.jiaochengji.com
教程集 >  脚本编程  >  javascript  >  正文 js访问xml之遍历节点树的代码

js访问xml之遍历节点树的代码

发布时间:2015-05-03   编辑:jiaochengji.com
如何访问xml并遍历节点树呢?这里分享一例js代码,用于遍历xml文件的节点数,有需要的朋友参考下。

1,xml文件
book.xml
 

复制代码 代码示例:
<?xml version="1.0" encoding="UTF-8"?>
<bookstore>
 <book category="COOKING">
   <title lang="en">Everyday Italian</title>
   <author>Giada De Laurentiis</author>
   <year>2005</year>
   <price>30.00</price>
 </book>
<book category="CHILDREN">
  <title lang="en">Harry Potter</title>
  <author>J K. Rowling</author>
  <year>2005</year>
  <price>29.99</price>
</book>
<book category="WEB">
  <title lang="en">XQuery Kick Start</title>
  <author>James McGovern</author>
  <author>Per Bothner</author>
  <author>Kurt Cagle</author>
  <author>James Linn</author>
  <author>Vaidyanathan Nagarajan</author>
  <year>2003</year>
  <price>49.99</price>
</book>
<book category="WEB">
  <title lang="en">Learning XML</title>
  <author>Erik T. Ray</author>
  <year>2003</year>
  <price>39.95</price>
</book>
</bookstore>

2,js代码 books.jsp 用于节点遍历。
 

复制代码 代码示例:

<html>
<head>
<script type="text/javascript" src="loadXML.js"></script>  //在上面的一篇文章里面有
</head>
<body>
<script type="text/javascript">

xmlDoc=loadXMLDoc("book.xml");

// documentElement always represents the root node
x=xmlDoc.documentElement.childNodes;
for (i=0;i<x.length;i++)
{
document.write(x[i].nodeName);
document.write(": ");
document.write(x[i].childNodes[0].nodeValue);
document.write("<br />");
}
</script>
</body>
</html>

3,xml字符串 遍历节点树
 

复制代码 代码示例:

<html>
<head>
<script type="text/javascript" src="loadXML.js"></script>
</head>
<body>
<script type="text/javascript">
text="<book>";
text=text+"<title>Everyday Italian</title>";
text=text+"<author>Giada De Laurentiis</author>";
text=text+"<year>2005</year>";
text=text+"</book>";

xmlDoc=loadXMLString(text);

// documentElement always represents the root node
x=xmlDoc.documentElement.childNodes;
for (i=0;i<x.length;i++)
  {
  document.write(x[i].nodeName);
  document.write(": ");
  document.write(x[i].childNodes[0].nodeValue);
  document.write("<br />");
  }
</script>
</body>
</html>

您可能感兴趣的文章:
js访问xml之遍历节点树的代码
数据结构-树和二叉树(Golang)
php 二叉树遍历算法与例子
数据结构中树与二叉树基础算法的比较
json为什么像花儿一样红
Python中树的相关操作!
jQuery 行级解析读取XML文件(附源码)
c# 解析XML文件的方法总结
java中二叉树遍历(递归) 程序代码
jQuery向上遍历DOM树之parents(),parent(),closest()之间的区别

关键词: 遍历节点   
[关闭]
~ ~