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=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>
动行结果