原文地址:http://www.tkachenko.com/blog/archives/000327.html
<html> <head> <title>MXXMLWriter sample.</title> <script type="text/javascript"> var reader = new ActiveXObject("Msxml2.SAXXMLReader.4.0"); var writer = new ActiveXObject("Msxml2.MXXMLWriter.4.0"); writer.indent = true; writer.standalone = true; reader.contentHandler = writer; reader.putProperty("http://xml.org/sax/properties/lexical-handler", writer); reader.parseURL("source.xml"); alert(writer.output); </script> </head> <body> <p>MXXMLWriter sample.</p> </body> </html>