Path: blob/main/files/en-us/web/guide/parsing_and_serializing_xml/index.md
6552 views
------At times, you may need to parse {{Glossary("XML")}} content and convert it into a {{Glossary("DOM")}} tree, or, conversely, serialize an existing DOM tree into XML. In this article, we'll look at the objects provided by the web platform to make the common tasks of serializing and parsing XML easy.
{{domxref("XMLSerializer")}}
: Serializes DOM trees, converting them into strings containing XML.
{{domxref("DOMParser")}}
: Constructs a DOM tree by parsing a string containing XML, returning a {{domxref("XMLDocument")}} or {{domxref("Document")}} as appropriate based on the input data.
{{domxref("XMLHttpRequest")}}
: Loads content from a URL; XML content is returned as an XML {{domxref("Document")}} object with a DOM tree built from the XML itself.
: A technology for creating strings that contain addresses for specific portions of an XML document, and locating XML nodes based on those addresses.
Creating an XML document
Using one of the following approaches to create an XML document (which is an instance of {{domxref("Document")}}).
Parsing strings into DOM trees
This example converts an XML fragment in a string into a DOM tree using a {{domxref("DOMParser")}}:
Parsing URL-addressable resources into DOM trees
Using XMLHttpRequest
Here is sample code that reads and parses a URL-addressable XML file into a DOM tree:
The value in the xhr object's {{domxref("XMLHttpRequest.responseXML", "responseXML")}} field is a {{domxref("Document")}} constructed by parsing the XML.
If the document is {{Glossary("HTML")}}, the code shown above will return a {{domxref("Document")}}. If the document is XML, the resulting object is actually a {{domxref("XMLDocument")}}. The two types are essentially the same; the difference is largely historical, although differentiating has some practical benefits as well.
Note: There is in fact an {{domxref("HTMLDocument")}} interface as well, but it is not necessarily an independent type. In some browsers it is, while in others it is an alias for the
Documentinterface.
Serializing an XML document
Given a {{domxref("Document")}}, you can serialize the document's DOM tree back into XML using the {{domxref("XMLSerializer.serializeToString()")}} method.
Use the following approaches to serialize the contents of the XML document you created in the previous section.
Serializing DOM trees to strings
First, create a DOM tree as described in How to Create a DOM tree. Alternatively, use a DOM tree obtained from {{ domxref("XMLHttpRequest") }}.
To serialize the DOM tree doc into XML text, call {{domxref("XMLSerializer.serializeToString()")}}:
Serializing HTML documents
If the DOM you have is an HTML document, you can serialize using serializeToString(), but there is a simpler option: just use the {{domxref("Element.innerHTML")}} property (if you want just the descendants of the specified node) or the {{domxref("Element.outerHTML")}} property if you want the node and all its descendants.
As a result, docInnerHtml is a string containing the HTML of the contents of the document; that is, the {{HTMLElement("body")}} element's contents.
You can get HTML corresponding to the <body> and its descendants with this code:
See also
{{domxref("XMLHttpRequest")}}
{{domxref("Document")}}, {{domxref("XMLDocument")}}, and {{domxref("HTMLDocument")}}