实例首页
自学教程
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"); document.write("Nodename: " + xmlDoc.nodeName); document.write(" (value: " + xmlDoc.childNodes[0].nodeValue + ")<br>"); x = xmlDoc.documentElement; document.write("Nodename: " + x.nodeName); document.write(" (value: " + x.childNodes[0].nodeValue + ")<br>"); y = xmlDoc.documentElement.childNodes; for (i = 0; i < y.length; i++) { if (y[i].nodeType != 3) { document.write("Nodename: " + y[i].nodeName); document.write(" (value: " + y[i].childNodes[0].nodeValue + ")<br>"); for (z = 0; z < y[i].childNodes.length; z++) { if (y[i].childNodes[z].nodeType != 3) { document.write("Nodename: " + y[i].childNodes[z].nodeName); document.write(" (value: " + y[i].childNodes[z].childNodes[0].nodeValue + ")<br>"); } } } } </script> </body> </html>
运行结果: