Home Python C Language C ++ HTML 5 CSS Javascript Java Kotlin SQL DJango Bootstrap React.js R C# PHP ASP.Net Numpy Dart Pandas Digital Marketing XML

XML DOM Introduction:



XML DOM stands for Extensible Markup Language Document Object Model. Let's break it down:

  1. XML: XML (Extensible Markup Language) is a markup language that defines rules for encoding documents in a format that is both human-readable and machine-readable.

  2. DOM: DOM (Document Object Model) is a programming interface for web documents. It represents the page so that programs can change the document structure, style, and content. DOM represents the document as a tree of nodes, where each node represents a part of the document (such as elements, attributes, or text).

Now, let's explain it with an example:

Suppose you have an XML document representing information about books:

        

Example

<library> <book> <title>Harry Potter and the Sorcerer's Stone</title> <author>J.K. Rowling</author> <year>1997</year> </book> <book> <title>The Hobbit</title> <author>J.R.R. Tolkien</author> <year>1937</year> </book> </library>

Now, let's explain how you can work with this XML using XML DOM:

  1. Loading the XML: You can load this XML into a DOM object in your programming language of choice, like JavaScript or Python.

  2. Accessing Elements: Once loaded, you can access elements of the XML document just like you would access elements of an HTML page with JavaScript. For example, to access the title of the first book, you would do something like document.getElementsByTagName("title")[0].textContent.

  3. Manipulating the XML: You can also manipulate the XML document using DOM methods. For example, you can add new elements, remove elements, or modify existing elements.

Here's a simple JavaScript example of accessing and modifying the XML document:

        

Example

// Load XML var xmlDoc = new DOMParser().parseFromString(xmlString, "text/xml"); // Access elements var titles = xmlDoc.getElementsByTagName("title"); console.log(titles[0].textContent); // Output: Harry Potter and the Sorcerer's Stone // Manipulate XML var newBook = xmlDoc.createElement("book"); var newTitle = xmlDoc.createElement("title"); newTitle.textContent = "The Great Gatsby"; var newAuthor = xmlDoc.createElement("author"); newAuthor.textContent = "F. Scott Fitzgerald"; var newYear = xmlDoc.createElement("year"); newYear.textContent = "1925"; newBook.appendChild(newTitle); newBook.appendChild(newAuthor); newBook.appendChild(newYear); xmlDoc.getElementsByTagName("library")[0].appendChild(newBook);

This script loads the XML, accesses the title of the first book, and then adds a new book to the library




Advertisement





Q3 Schools : India


Online Complier

HTML 5

Python

java

C++

C

JavaScript

Website Development

HTML

CSS

JavaScript

Python

SQL

Campus Learning

C

C#

java