如何修改XML文件信息并保存

时间:2013-08-27 11:37:28

标签: javascript php xml xml-parsing xml-formatting

因此,我需要从节点获取信息,修改它,然后使用新信息保存文件。稍后我将首先将现有节点值作为输入字段的值。然后,用户应该能够调整值并保存文件。

HEAD

<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>

BODY

<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>

0 个答案:

没有答案