XML DOM: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 13: Line 13:


=Mixed Content Model=
=Mixed Content Model=
Text and elements can be freely intermixed in a DOM hierarchy.
Example:
<pre>
<sentence>This is an <bold>interesting</bold> idea.</sentence>
</pre>

Revision as of 18:24, 10 November 2016

External

Internal

Overview

The W3C Document Object Model (DOM) is a platform and language-neutral interface that allows programs and scripts to dynamically access and update the content, structure, and style of an XML document.

Mixed Content Model

Text and elements can be freely intermixed in a DOM hierarchy.

Example:

<sentence>This is an <bold>interesting</bold> idea.</sentence>