W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<html> <head> <script type="text/javascript" src="/example/xdom/loadxmldoc.js"> </script> </head> <body> <script type="text/javascript"> //check if the last node is an element node function get_lastchild(n) { var x=n.lastChild; while (x.nodeType!=1) { x=x.previousSibling; } return x; } xmlDoc=loadXMLDoc("/example/xdom/books.xml"); var x=xmlDoc.documentElement; var lastNode=get_lastchild(x); for (var i=0;i<lastNode.childNodes.length;i++) { if (lastNode.childNodes[i].nodeType==1) { //Process only element nodes document.write(lastNode.childNodes[i].nodeName); document.write(" = "); document.write(lastNode.childNodes[i].childNodes[0].nodeValue); document.write("<br />"); } } </script> </body> </html>