代码示例:(标识:xdom_removetextnode)
<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];

document.write("子节点:");
document.write(x.childNodes.length);
document.write("<br />");

y=x.childNodes[0];
x.removeChild(y);

document.write("子节点:");
document.write(x.childNodes.length);
</script>
</body>
</html>
运行结果: