dev-notes/docs/languages/javascript/dom.md

165 lines
3.8 KiB
Markdown
Raw Normal View History

2021-01-31 11:05:37 +01:00
# Document Object Model (DOM)
The **Document Object Model** is a *map* of the HTML document. Elements in an HTML document can be accessed, changed, deleted, or added using the DOM.
The document object is *globally available* in the browser. It allows to access and manipulate the DOM of the current web page.
## DOM Access
### Selecting Nodes from the DOM
2021-07-12 16:18:53 +02:00
`getElementById()` and `querySelector()` return a single element.
2021-01-31 11:05:37 +01:00
`getElementsByClassName()`, `getElementsByTagName()`, and `querySelectorAll()` return a collection of elements.
```js
Javascript
// By Id
var node = document.getElementById('id');
// By Tag Name
2021-07-12 16:18:53 +02:00
var nodes = document.getElementsByTagName('tag');
2021-01-31 11:05:37 +01:00
// By Class Name
2021-07-12 16:18:53 +02:00
var nodes = document.getElementsByClassName('class');
2021-01-31 11:05:37 +01:00
// By CSS Query
var node = document.querySelector('css-selector');
2021-07-12 16:18:53 +02:00
var nodes = document.querySelectorAll('css-selector');
2021-01-31 11:05:37 +01:00
```
2021-09-20 19:35:32 +02:00
## Manipulating the DOM
2021-01-31 11:05:37 +01:00
### Manipulating a node's attributes
It's possible access and change the attributes of a DOM node using the *dot notation*.
```js
// Changing the src of an image:
var image = document.getElementById('id');
var oldImageSource = image.src;
image.src = 'image-url';
//Changing the className of a DOM node:
var node = document.getElementById('id');
node.className = 'new-class';
```
2021-09-20 19:35:32 +02:00
### Manipulating a node's style
2021-01-31 11:05:37 +01:00
It's possible to access and change the styles of a DOM nodes via the **style** property.
CSS property names with a `-` must be **camelCased** and number properties must have a unit.
```css
body {
color: red;
background-color: pink;
padding-top: 10px;
}
```
```js
var pageNode = document.body;
pageNode.style.color = 'red';
pageNode.style.backgroundColor = 'pink';
pageNode.style.paddingTop = '10px';
```
2021-09-20 19:35:32 +02:00
### Manipulating a node's contents
2021-01-31 11:05:37 +01:00
Each DOM node has an `innerHTML` attribute. It contains the HTML of all its children.
```js
var pageNode = document.body;
console.log(pageNode.innerHTML);
// Set innerHTML to replace the contents of the node:
pageNode.innerHTML = "<h1>Oh, no! Everything is gone!</h1>";
// Or add to innerHTML instead:
pageNode.innerHTML += "P.S. Please do write back.";
```
To change the actual text of a node, `textContent` may be a better choice:
`innerHTML`:
- Works in older browsers
- **More powerful**: can change code
- **Less secure**: allows cross-site scripting (XSS)
`textContent`:
- Doesn't work in IE8 and below
- **Faster**: the browser doesn't have to parse HTML
- **More secure**: won't execute code
### Reading Inputs From A Form
In `page.html`:
```html
<input type="" id="identifier" value="">
```
In `script.js`:
```js
2021-09-20 19:35:32 +02:00
var formNode = document.getElementById("Identifier");
2021-01-31 11:05:37 +01:00
var value = formNode.value;
```
## Creating & Removing DOM Nodes
The document object also allows to create new nodes from scratch.
```js
// create node
document.createElement('tagName');
document.createTextNode('text');
domNode.appendChild(childToAppend); // insert childTaAppend after domNode
// insert node before domNode
2021-07-12 16:18:53 +02:00
domNode.insertBefore(childToInsert, domnode);
2021-01-31 11:05:37 +01:00
domNode.parentNode.insertBefore(childToInsert, nodeAfterChild);
// remove a node
2021-09-20 19:35:32 +02:00
domNode.removeChild(childToRemove);
2021-01-31 11:05:37 +01:00
node.parentNode.removeChild(node);
```
Example:
```js
var body = document.body;
var newImg = document.createElement('img');
newImg.src = 'http://placekitten.com/400/300';
newImg.style.border = '1px solid black';
body.appendChild(newImg);
var newParagraph = document.createElement('p');
var newText = document.createTextNode('Squee!');
newParagraph.appendChild(newText);
body.appendChild(newParagraph);
```
### Creating DOM Nodes with Constructor Functions
```js
function Node(params) {
this.node = document.createElement("tag");
2021-09-20 19:35:32 +02:00
this.node.attribute = value;
2021-01-31 11:05:37 +01:00
// operations on the node
return this.node;
}
var node = Node(params);
domElement.appendChild(node);
```