更改文本节点中的文本
- <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")[0].childNodes[0];
- x.nodeValue="Easy Cooking";
- x=xmlDoc.getElementsByTagName("title")[0].childNodes[0];
- txt=x.nodeValue;
- document.write(txt);
- </script>
- </body>
- </html>