gpt4 book ai didi

javascript - 如何使用javascript将数据存储在xml文件中?

转载 作者:行者123 更新时间:2023-11-30 06:46:11 24 4
gpt4 key购买 nike

我是 javascript 的新手并在我的项目中使用它。因为我需要读取 xml 文件然后在操作之后我想将更新的值存储回 xml 文件中。我成功地从 xml 文件中获取了值但没有能够将值存储回 xml 文件。这是我试过的代码。

        <html>
<head>
<title>
Hello
</title>
</head>
<body>
<script>
function loadXML()
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET","data.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;
//saving XML from document input fields
xmlDoc.getElementsByTagName("Name")[0].childNodes[0].nodeValue = document.getElementById("name").value;
xmlDoc.getElementsByTagName("Address")[0].childNodes[0].nodeValue = document.getElementById("address").value;
xmlDoc.getElementsByTagName("Contact")[0].childNodes[0].nodeValue = document.getElementById("contact").value;
xmlDoc.save();
}

</script>
<form action="Display.html" method="post">
<table>
<tr>
<td>Name :</td>
<td>
<input type="text" id="name"/>
</td>
</tr>
<tr>
<td>Address :</td>
<td>
<input type="text" id="address"/>
</td>
</tr>
<tr>
<td>Contact :</td>
<td>
<input type="text" id="contact"/>
</td>
</tr>
<tr><td></td><td></td><td><input type="button" value="Submit" onclick="loadXML()"></td></tr>
</table>
</form>
</body>
</html>

如果有人知道答案,请帮忙。如果可能,请举例说明提前致谢...

最佳答案

jQuery:您只需使用 $.ajax() 并通过 POST 将您的数据发送到类似 save_my_xml.php 的地方。有一些类可以在 PHP 中处理 XML,但是如果您与 Smarty 相处得很好,我建议您fetch 您的 xml_template.tpl 然后是 file_put_contents.

关于javascript - 如何使用javascript将数据存储在xml文件中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6557018/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com