从第一个 <title> 元素获取文本

  1. <html>
  2. <head>
  3. <script type="text/javascript" src="/example/xdom/loadxmldoc.js">
  4. </script>
  5. </head>
  6. <body>
  7.  
  8. <script type="text/javascript">
  9. xmlDoc=loadXMLDoc("/example/xdom/books.xml");
  10.  
  11. x=xmlDoc.getElementsByTagName("title");
  12. txt=x[0].childNodes[0].nodeValue;
  13. document.write(txt);
  14. </script>
  15. </body>
  16. </html>