实例首页
自学教程
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> // 获取第一个子节点名及值 function get_firstchild(n) { x = n.firstChild; while (x.nodeType != 1) { x = x.nextSibling; } return x; } xmlDoc = loadXMLDoc("//demo.runoops.com/sources/xml/books.xml"); x = get_firstchild(xmlDoc); document.write("Nodename: " + x.nodeName); document.write(" nodetype: " + x.nodeType + "<br>"); // 获取根元素的第一个子节点 y = get_firstchild(xmlDoc.documentElement); document.write("Nodename: " + y.nodeName); document.write(" nodetype: " + y.nodeType); </script> </body> </html>
运行结果: