代码示例:(标识:xdom_remove_nodevalue)
<html>
<head>
<script type="text/javascript" src="/static/demo/html/js/loadxmldoc.js"> 
</script>
</head>
<body>

<script type="text/javascript">
xmlDoc=loadXMLDoc("/static/demo/xdom/books.xml");

x=xmlDoc.getElementsByTagName("title")[0].childNodes[0];

document.write("值:" + x.nodeValue);
document.write("<br />");

x.nodeValue="";

document.write("值:" + x.nodeValue);
</script>
</body>
</html>
运行结果: