我想从表单中获取姓名和电子邮件,并在服务器上写入xml文件。我已在互联网上搜索但我无法做到。任何可以给我代码的人。
xml格式:
<?xml version="1.0" encoding="utf-8"?>
<Infos>
<Info name="name" email="email" />
</Infos>
如果它是通用的,代码会更好。我的代码:
<html>
<head>
<title>Test</title>
</head>
<body>
<script src="http://code.jquery.com/jquery-1.12.0.min.js"></script>
<script>
function addData(fileName, targetName, elementName, attribute, value)
{
$.ajax({
type: "POST",
url: filename,
dataType: "xml",
success: function (xml) {
$("<"+elementName+" "+attribute+"="+value+"/>").appendTo($(xml).find(targetName));
}
});
}
</script>
</body>
</html>