加载并解析 XML 文件
- <html>
- <head>
- <script type="text/javascript" src="/example/xdom/loadxmldoc.js"></script>
- </head>
- <body>
- <script type="text/javascript">
- xmlDoc=loadXMLDoc("/example/xdom/books.xml");
-
- document.write(xmlDoc.getElementsByTagName("title")[0].childNodes[0].nodeValue);
- document.write("<br />");
- document.write(xmlDoc.getElementsByTagName("author")[0].childNodes[0].nodeValue);
- document.write("<br />");
- document.write(xmlDoc.getElementsByTagName("year")[0].childNodes[0].nodeValue);
- </script>
- </body>
- </html>