我对写入 XML 文件的问题感到震惊。我知道如何读取 xml 文件。让我解释清楚。我必须从 xml 文件中读取值并将其传递给标签或列表框,然后将值写入另一个 xml 文件。我完成了阅读的第一部分,我对写作感到震惊。我在stackoverflow中经历了几个查询。但它不适合我。帮帮我这是我用来编写的代码
var v = new XMLWriter();
v.writeStartDocument(true);
v.writeElementString('option','Hello World');
v.writeAttributeString('foo','bar');
v.writeEndDocument();
console.log( v.flush() );