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