HTML
CSS
JavaScript
Vue
React
Python
PHP
Java
.Net
Java9手册
PHP手册
CSS3手册
jQuery手册
源代码
在线运行
<!DOCTYPE html> <html> <head> <script src="loadxmldoc.js"> </script> </head> <body> <script> // 获取第一个子节点 function get_firstchild(n) { x=n.firstChild; while (x.nodeType!=1) { x=x.nextSibling; } return x; } xmlDoc=loadXMLDoc("books.xml"); 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>
动行结果