加载并解析 XML 字符串
- <html>
- <head>
- <script type="text/javascript" src="/example/xdom/loadxmlstring.js"></script>
- </head>
- <body>
- <script type="text/javascript">
- text="<bookstore>"
- text=text+"<book>";
- text=text+"<title>Harry Potter</title>";
- text=text+"<author>J K. Rowling</author>";
- text=text+"<year>2005</year>";
- text=text+"</book>";
- text=text+"</bookstore>";
-
- xmlDoc=loadXMLString(text);
-
- 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>