DOM Manipulation
English |
"The DOM Manipulation," refers to the methods and interfaces provided byis the Document Object ModelModel, (DOM)which thatis allowessentially youthe toentire interactHTML withpage. andYou can modify the structureDOM andusing JavaScript. For example, you can change the color of an element, or modify the content of webpages.an Theelement.
This representscan also be done with PHP, but that requires a (return) trip to the documentserver. asWith a hierarchical tree of nodes, where each node represents a part of the document (such as an element, attribute, or text). JavaScript allowsJS, you tocan manipulatemake local (front-end) adjustments. This is often faster and usually looks better.
To modify the DOM, enablingyou dynamicneed changesa tofew thespecific content,commands. structure,The andmost styleimportant of webpages. Hereones are keydiscussed concepts and operations involved in DOM manipulation:here.
1. Accessing Elements
To manipulate the content, you first need to access the elements. Common methods to access DOM elements include:
document.getElementById(id)
: Selects a single element by its ID.document.getElementsByTagName(name)
: Returns a collection of elements with the given tag name.document.getElementsByClassName(name)
: Returns a collection of elements that have the given class name.document.querySelector(selector)
: Returns the first element that matches a specified CSS selector.document.querySelectorAll(selector)
: Returns a list of all elements that match a specified CSS selector.
2. Changing Element Properties
Once you have a reference to an element, you can modify its properties. This includes changing the element's inner HTML, text content, attributes, and style. For example:
element.innerHTML
: Gets or sets the HTML or XML markup contained within the element.element.textContent
: Sets or returns the textual content of an element and its descendants.element.setAttribute(name, value)
: Adds a specified attribute to an element, or updates its value if it already exists.element.style.property
: Changes the style of an element, whereproperty
is a CSS property (in camelCase, e.g.,backgroundColor
).
3. Creating and Removing Elements
JavaScript allows you to create new elements and insert them into the DOM or remove existing elements:
document.createElement(tagName)
: Creates a new element with the given tag name.parentNode.appendChild(childNode)
: Appends a node as the last child of a parent node.parentNode.insertBefore(newNode, referenceNode)
: Inserts a new node before the reference node as a child of a specified parent node.parentNode.removeChild(child)
: Removes a child node from the DOM.element.remove()
: Removes the element from the DOM.
4. Event Handling
Adding event listeners to elements enables you to execute code in response to user actions, such as clicks, keyboard input, or mouse movements:
element.addEventListener(event, function, useCapture)
: Attaches an event handler to an element. Common events includeclick
,mouseover
,mouseout
,keydown
,keyup
, etc.
5. Traversal and Modification
The DOM provides methods and properties to traverse and modify nodes:
element.childNodes
: Returns a live NodeList of child nodes of an element.element.parentElement
: Returns the parent element of the specified element.element.nextSibling
: Returns the next sibling in the tree.element.previousSibling
: Returns the previous sibling in the tree.
Nederlands |
"DOM Manipulatie" verwijst naar de methoden en interfaces die worden geboden dooris het Document Object ModelModel, (DOM)dat waarmeeis jezeg maar de hele HTML pagina. Je kunt interageren met enJavaScript de structuurDOM enanapassen. Je kunt bijvoorbeeld een kleur van een element aanpassen, of de inhoud van webpagina'seen kuntelement wijzigen.aanpassen.
Dit kan natuurlijk ook met PHP, maar daarvoor moet je (terug) naar de server. Met JS kan je lokaal (front End) dingen aanapssen. Dat is vaak sneller en ziet er vaak beter uit.
Om de DOM vertegenwoordigtaan hette documentpassen, alsheb je een hiërarchischepaar boomspecifieke vancommando's. knooppunten,De waarbijbelangrijkste elkworden knooppunthier een deel van het document vertegenwoordigt (zoals een element, attribuut of tekst). JavaScript stelt je in staat om het DOM te manipuleren, wat dynamische veranderingen aan de inhoud, structuur en stijl van webpagina's mogelijk maakt. Hier zijn enkele kernconcepten en -bewerkingen die betrokken zijn bij DOM-manipulatie:besproken.
1. Toegang krijgen tot Elementen
Om de inhoud te manipuleren, moet je eerst toegang krijgen tot de elementen. Veelgebruikte methoden om toegang te krijgen tot DOM-elementen zijn:
2. Wijzigen van Elementeigenschappen
Zodra je een referentie naar een element hebt, kun je de eigenschappen ervan wijzigen. Dit omvat het wijzigen van de innerlijke HTML, tekstinhoud, attributen en stijl van het element. Bijvoorbeeld:
3. Creëren en Verwijderen van Elementen
JavaScript stelt je in staat om nieuwe elementen te creëren en deze in het DOM in te voegen of bestaande elementen te verwijderen:
4. Event Handling
Het toevoegen van event listeners aan elementen stelt je in staat om code uit te voeren als reactie op gebruikersacties, zoals klikken, toetsenbordinvoer of muisbewegingen:
5. Doorlopen en Wijzigen
Het DOM biedt methoden en eigenschappen om knooppunten te doorlopen en te wijzigen: