实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>自学教程(runoops.com)</title> <script src="//demo.runoops.com/sources/xml/loadxmldoc.js"></script> </head> <body> <script> xmlDoc = loadXMLDoc("//demo.runoops.com/sources/xml/books.xml"); // 获取第一个子节点 function get_firstchild(n) { x = n.firstChild; while (x.nodeType != 1) { x = x.nextSibling; } return x; } x = xmlDoc.documentElement; firstNode = get_firstchild(x); for (i = 0; i < firstNode.childNodes.length; i++) { if (firstNode.childNodes[i].nodeType == 1) { // 输出节点元素与值 document.write(firstNode.childNodes[i].nodeName); document.write(" = "); document.write(firstNode.childNodes[i].childNodes[0].nodeValue); document.write("<br>"); } } </script> </body> </html>
运行结果: