Learn the basics of JavaScript DOM operations in one article

Learn the basics of JavaScript DOM operations in one article

DOM Concepts

DOM: document object model: The document object model uses js to manipulate HTML code, add elements, and delete elements. . .

Get Elements

(1) getElementById gets an element by id (2) getElementsByTagName gets an element by tag name (array)
(3) getElementsByClassName gets an element set (array) by class.
(4) getElementsByName gets an element collection (array) through the name attribute

Summary : Elements can be obtained based on tag name, id, class, and name attributes. The result of Id is an element, while the result of others is a collection.
The document object supports the above four, while the element object only supports
getElementsByTagName and getElementsByClassName

Modifying Elements

(1) Modify the content. The text inside the tag can be read or set through the innerText property. The text inside the tag can be read or set through the innerHTML property. There are two differences: innerHTML will parse the text according to the rules of HTML, while innerText is just treated as ordinary text content.

insert image description here

(2) Modify the style
a:xxx.style.yyy
b: xxx.classname = "..." (equivalent to modifying the class attribute)

insert image description here

Add and remove elements

(1) createElement creates an element node
createElement("p") creates a paragraph (2) createTextNode creates a text node
createTextNode("text content") creates a text node with the value "text content" (3) appendChild adds a child node (4) removeChild removes a child node

insert image description here
insert image description here

navigation

Document: root node
parentNode: Get the parent node
childNodes: Get all child nodes
firstChild: the first child node
lastChild: the last child node

insert image description here
insert image description here

This is the end of this article about the basics of JavaScript DOM operations. For more relevant JavaScript DOM basics content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Summary of common JavaScript DOM operation codes
  • All properties of JavaScript variable Dom object
  • Detailed explanation of common operation examples of js DOM events
  • Understand Dom operations in javascript
  • Introduction to Javascript DOM, nodes and element acquisition

<<:  MySQL 5.7.21 decompression version installation Navicat database operation tool installation

>>:  Summary of some common configurations and techniques of Nginx

Recommend

How to run a project with docker

1. Enter the directory where your project war is ...

html option disable select select disable option example

Copy code The code is as follows: <select> ...

Six ways to increase your website speed

1. Replace your .js library file address with the...

Mysql solution to improve the efficiency of copying large data tables

Preface This article mainly introduces the releva...

Detailed tutorial on using VMware WorkStation with Docker for Windows

Table of contents 1. Introduction 2. Install Dock...

About the usage and precautions of promise in javascript (recommended)

1. Promise description Promise is a standard buil...

SQL Server Comment Shortcut Key Operation

Batch comments in SQL Server Batch Annotation Ctr...

Detailed steps for adding hosts you need to monitor in zabbix

Add monitoring host Host 192.168.179.104 is added...

Share 9 Linux Shell Scripting Tips for Practice and Interviews

Precautions 1) Add interpreter at the beginning: ...

JavaScript ES new feature block scope

Table of contents 1. What is block scope? 2. Why ...

Mysql online recovery of undo table space actual combat record

1 Mysql5.6 1.1 Related parameters MySQL 5.6 adds ...

Detailed explanation of Vue filter implementation and application scenarios

1. Brief Introduction Vue.js allows you to define...

Nginx cache files and dynamic files automatic balancing configuration script

nginx Nginx (engine x) is a high-performance HTTP...

Floating menu, can achieve up and down scrolling effect

The code can be further streamlined, but due to t...