使用节点列表中的下标号来访问节点
- <html>
- <head>
- <script type="text/javascript" src="/example/xdom/loadxmldoc.js"></script>
- </head>
- <body>
- <script type="text/javascript">
- xmlDoc=loadXMLDoc("/example/xdom/books.xml");
- x=xmlDoc.getElementsByTagName("title");
- document.write(x[2].childNodes[0].nodeValue);
- </script>
- </body>
- </html>