).
Text Node: Represents the text within an element.
Attribute Node: Represents the attributes of an element (e.g., class, id).
Comment Node: Represents comments in the HTML.
Example DOM Tree
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h1>Hello, World!</h1>
<p>This is a paragraph.</p>
</body>
</html>
Copier après la connexion
DOM Representation:
Document
├── html (Element)
│ ├── head (Element)
│ │ └── title (Element)
│ │ └── "My Page" (Text)
│ └── body (Element)
│ ├── h1 (Element)
│ │ └── "Hello, World!" (Text)
│ └── p (Element)
│ └── "This is a paragraph." (Text)
Copier après la connexion
Accessing the DOM
Selecting Elements
-
getElementById: Selects a single element by its ID.
const element = document.getElementById('myId');
Copier après la connexion
-
getElementsByClassName: Returns a live HTMLCollection of elements with the specified class name.
const elements = document.getElementsByClassName('myClass');
Copier après la connexion
-
getElementsByTagName: Returns a live HTMLCollection of elements with the specified tag name.
const elements = document.getElementsByTagName('div');
Copier après la connexion
-
querySelector: Selects the first element that matches a CSS selector.
const element = document.querySelector('.myClass');
Copier après la connexion
-
querySelectorAll: Returns a static NodeList of all elements that match a CSS selector.
const elements = document.querySelectorAll('div.myClass');
Copier après la connexion
Manipulating Elements
const element = document.getElementById('myId');
element.textContent = 'New Content';
Copier après la connexion
const element = document.getElementById('myId');
element.setAttribute('class', 'newClass');
Copier après la connexion
const element = document.getElementById('myId');
element.style.color = 'blue';
Copier après la connexion
-
Creating and Appending Elements:
const newElement = document.createElement('div');
newElement.textContent = 'I am a new div';
document.body.appendChild(newElement);
Copier après la connexion
const element = document.getElementById('myId');
element.parentNode.removeChild(element);
Copier après la connexion
DOM Events
Events are actions or occurrences that happen in the browser, and you can respond to them with event handlers.
Adding Event Listeners
const button = document.getElementById('myButton');
button.addEventListener('click', function() {
alert('Button clicked!');
});
Copier après la connexion
Common Events
-
click: Triggered when an element is clicked.
-
mouseover: Triggered when the mouse hovers over an element.
-
keydown: Triggered when a key is pressed down.
-
submit: Triggered when a form is submitted.
Conclusion
Understanding the DOM is essential for web development, as it provides a way to interact with and manipulate web pages. Mastering DOM manipulation will allow you to create dynamic and interactive web applications.
Feel free to dive deeper into the documentation and experiment with the various methods and properties available in the DOM API. Happy coding!
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!