更改文本节点中的文本

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