我想使用 jQuery 写入 XML 文件。假设如下:
app.writeXML = function(data) {
$.get("xml/sample.xml", function(resp) {
var node = $(resp).find("Sample")
$(node).append('<test>this is a test</test>')
//write to the sample.xml file with the additional "test" node added
}, 'xml')
}
新节点“test”是否附加到本地内存中我的“Sample”节点的末尾,或者我这里有错误?
如果它仅在本地内存中,我假设我需要一个服务器端组件来实际写入文件。使用 PHP 会是什么样子?