You have learned XML DOM, what's next?
- Previous page DOM instance
- Next page DOM homepage
Samenvatting van XML DOM
Deze handleiding heeft u geleerd hoe u XML-documenten kunt bereiken en manipuleren.
U hebt geleerd dat XML DOM een XML-document als een boomstructuur ziet, waarin elementen andere elementen bevatten, en dat u via de DOM-baam alle elementen kunt bereiken. Hun inhoud kan worden gewijzigd of verwijderd, en nieuwe elementen kunnen ook worden gecreëerd via DOM.
You have learned about XML parsers and how to load XML documents into parsers.
We have also introduced most of the important DOM objects and their usage.
For more information about XML DOM, please visit our XML DOM instance.
You have learned XML DOM, what's next?
The next step should be to learn XSLT.
If you need to validate an XML document, the next step is to learn about DTD and XML Schema.
XSLT
XSLT is a stylesheet language for XML files.
With XSLT, you can convert XML documents to other formats, such as XHTML.
If you want to learn about XSLT, please visit our XSLT tutorial.
DTD
The role of DTD is to define which elements and attributes are legal in an XML document.
DTD is used to validate XML data.
If you want to learn more about DTD, please visit our DTD tutorial.
XML Schema will replace DTD.
Unlike DTD, XML Schema supports data types and namespaces.
If you want to learn about XML Schema, please visit our XML Schema tutorial.
- Previous page DOM instance
- Next page DOM homepage