请问如何使用dom对象的appendChild方法同时添加两元素子节点,并且能显示出来,用js脚本语言写
xml代码如下:
<?xml version="1.0" encoding="UTF-8"?>
<Address>
<Custom Sex="男">
<Name>吴梦达</Name>
<E-Mail>Mengda@sina.com</E-Mail>
</Custom>
<Custom Sex="女">
<Name>白晶晶</Name>
<E-Mail>ghost@sina.com</E-Mail>
</Custom>
</Address>
要求在客户节点添加两个元素节点“公司”“联系电话”,其中元素节点“联系电话”含有“手机”与“办公电话”两个属性节点
部分js代码如下:
<html>
<head>
<title>Enter the title of your HTML document
here</title>
</head>
<body>
<p>Enter the body text of your HTML document
here</p>
<script language="javascript">
var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async = false;
xmlDoc.load("Client.xml");
var cNode;
var tNode;
var mobile;
var tel;
var childs;
var i;
cNode = xmlDoc.createNode(1,"公司","");
tNode = xmlDoc.createNode(1,"联系电话","");
mobile = xmlDoc.createNode(2,"手机","");
tel = xmlDoc.createNode(2,"办公室电话","");
childs = xmlDoc.documentElement;
childs.childNodes[0].appendChild(cNode);
childs.childNodes[0].lastChild.setAttributeNode(tel);
childs.childNodes[1].appendChild(cNode);
childs.childNodes[1].lastChild.setAttributeNode(tel);
window.alert(childs.xml);
</script>
</body>
</html>
最后跳出来的窗口总是只有最后加进去的一个元素节点,不会实现两个同时显示
请高手指导