如何使用javascript写入xml

时间:2012-08-17 04:54:32

标签: javascript html xml

我对写入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() );

1 个答案:

答案 0 :(得分:3)

来自here

function test(){    
 var v = new  XMLWriter();
 v.writeStartDocument(true);
 v.writeElementString('test','Hello World');
 v.writeAttributeString('foo','bar');
 v.writeEndDocument();
 console.log( v.flush() );
}

将产生

<?xml version="1.0" encoding="ISO-8859-1" standalone="true" ?>
 <test foo="bar">Hello World</test>