所以,我需要从节点获取信息,修改它,然后用新信息保存文件。稍后我将首先将现有节点值作为输入字段的值。然后用户应该能够调整该值并保存文件。
头
<script>
function loadXMLDoc(dname)
{
if (window.XMLHttpRequest)
{
xhttp=new XMLHttpRequest();
}
else
{
xhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xhttp.open("GET",dname,false);
xhttp.send();
return xhttp.responseXML;
}
</script>
身体
<div id="firstdiv" style="background:yellow;color:black;width:300px;height:200px;"></div>
<div id="seconddiv" style="background:green;color:black;width:300px;height:200px;"></div>
<script>
xmlDoc=loadXMLDoc("example.xml");
x=xmlDoc.getElementsByTagName("MAN")[0].childNodes[0];
document.getElementById("firstdiv").innerHTML=x.nodeValue;
x.nodeValue="1";
document.getElementById("seconddiv").innerHTML=x.nodeValue;
</script>