XML DOM Introduction
XML DOM definieert de standaardmethoden voor het benaderen en verwerken van XML-documenten.
XML DOM is een afkorting van XML Document Object Model, wat staat voor XML Document Object Model.
De basissteun die je moet hebben
Voordat je verder gaat, moet je een basiskennis hebben van het volgende:
- HTML / XHTML
- JavaScript
- XML
Als je deze projecten graag eerst wilt leren, bezoek dan onzeHoofdpaginaBezoek deze tutorials.
Wat is DOM?
DOM is een aanbevolen standaard van de W3C (World Wide Web Consortium).
DOM definieert de standaarden voor het benaderen van XML- en XHTML-documenten.
“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 documents.”
W3C DOM is divided into 3 different parts/levels (parts / levels):
- Core DOM
- Standard model for any structured document
- XML DOM
- Standard model for XML documents
- HTML DOM
- Standard model for HTML documents
DOM defines all document elementsobjects and propertiesand access to themMethods(interface).
You can find more information about W3C DOM specifications/levels in our W3C tutorials to get more information about W3C DOM specifications/levels.
What is HTML DOM?
HTML DOM defines all HTML elements and their properties, as well as the methods (interfaces) to access them.
If you want to learn HTML DOM, please visit our HTML DOM tutorial.
What is XML DOM?
XML DOM is:
- Standard object model for XML
- Standard programming interface for XML
- Platform and language neutral
- W3C standards
XML DOM defines all XML elementsobjects and propertiesand access to themMethods (interfaces).
In other words:
XML DOM is the standard used to access, change, add, or delete XML elements.