


JavaScript study notes (19) Node operation implementation code_Basic knowledge
HTML example to be used in this section
- Project one
- Project two
- Project three
1. Create element node
The document.createElement() method is used to create elements. It accepts a parameter, which is the tag name of the element to be created, and returns the created element. Node
var div = document.createElement("div") ; //Create a div element
div.id = "myDiv"; //Set the div's id
div.className = "box"; //Set the div's class
After creating the element, you must add the element to the document tree
2. Add element node
The appendChild() method is used to add a node to the end of the childNodes list and return the element node to be added
var ul = document.getElementById("myList"); //Get ul
var li = document.createElement("li"); //Create li
li.innerHTML = "Item 4"; //Add text to li
ul.appendChild(li); / /Add li to the end of the ul child node
After adding:
- Project One
- Project Two
- Project Three
- Project Four
appendChild() method can also be added Elements that already exist will be moved from the original position to the new position
var ul = document.getElementById("myList"); //Get ul
ul.appendChild(ul.firstChild); //Move the first element node of ul to the end of the ul child node
After running (IE):
- Project Two
- Project Three
- Project One
insertBefore() method, if you do not insert the node at the end, but want to place it at a specific position, use this method, this method Accepts 2 parameters, the first is the node to be inserted, the second is the reference node, returns the element node to be added
var ul = document.getElementById("myList"); //Get ul
var li = document.createElement("li"); //Create li
li.innerHTML= "Item Four"; //Add text to li
ul.insertBefore(li,ul.firstChild); //Add li before the first child node of ul
After adding:
- Item four
- Item one
- Item two
- Project 3
var ul = document.getElementById("myList"); //Get ul
var li = document.createElement("li"); //Create li
li.innerHTML= "Item 4"; //Add text to li
ul.insertBefore(li,ul.null); //Add li to the end of the child node of ul
After adding:
- Item one
- Item two
- Item three
< ;li>Project 4
var ul = document.getElementById("myList"); //Get ul
var li = document.createElement("li"); //Create li
li.innerHTML= "Item 4"; //Add text to li
var lis = ul.getElementsByTagName("li") //Get the collection of all li's in ul
ul.insertBefore(li,lis[ 1]); //Add li before the second li node in ul
After adding:
- Project 1
- Item 4
- Item 2
- Item 3
removeChild() method, used to remove nodes, accepts a parameter, which is the node to be removed, and returns the removed node. Note that the removed node is still in the document , but its position is no longer in the document
ul.removeChild(lis[0]); //Remove the first li, Different from the above, you need to consider the differences between browsers
4. Replace element node
replaceChild() method, used to replace nodes, accepts two parameters, the first parameter is to insert node, the second one is the node to be replaced, return the replaced node
li.innerHTML= "Item Four"; //Add to li Text
var lis = ul.getElementsByTagName("li") //Get the collection of all li in ul
var returnNode = ul.replaceChild(li,lis[1]); //Replace the original with the created li The second li
5. Copy node
cloneNode() method, used to copy nodes, accepts a Boolean parameter, true means deep copy (copy the node and all its child nodes) , false means shallow copy (copy the node itself, do not copy the child nodes)
When operating nodes, please pay attention to the differences between IE and other browsers (discussed in Section 18)

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

In-depth discussion of the root causes of the difference in console.log output. This article will analyze the differences in the output results of console.log function in a piece of code and explain the reasons behind it. �...

Explore the implementation of panel drag and drop adjustment function similar to VSCode in the front-end. In front-end development, how to implement VSCode similar to VSCode...
