Table of Contents
DOM
Node level
Node type
Home Web Front-end JS Tutorial Detailed introduction to DOM knowledge

Detailed introduction to DOM knowledge

Jun 26, 2017 am 11:52 AM
Knowledge

DOM

We know that JavaScript is composed of ECMAScript + DOM + BOM. ECMAScript is some syntax in JS, and BOM is mainly a collection of related knowledge about the browser object (window) object. The DOM is a collection of knowledge related to document objects.

We know that the interaction between HTML and JS is achieved through events. The DOM is an API for HTML (XML) documents. Therefore, if we want to interact with the user, we need to use the API provided by the DOM to obtain the HTML element, and then bind the corresponding event to the element to interact with the user. Therefore, understanding and mastering DOM is very important.

This article is mainly based on the DOM-related chapters in "JavaScript Advanced Programming (3)" to sort out the main knowledge of DOM and intersperse some of my personal understanding.

Node level

Everyone who has written HTML code should know that we need to add indentation to each element, then write the relevant HTMl tags and content, and finally display it on the web page . So this nested HTML code and content constitutes the node hierarchy.

Everyone who understands ECMAScript should know that every object in JS is created based on a reference type, and the reference type can be the reference type provided natively by JS (Array, Function, RegExp, Object etc.), or it can be a custom reference type (the reference type is called through the new keyword (it can also be called a constructor)). All objects are instance objects of Object and can inherit the properties and methods on Object.prototype

And in the DOM, there is also a similar mechanism. In the DOM, the top-level type is the Node type, and all other nodes can inherit the properties and methods of the Node type. The Node type is actually equivalent to the Object constructor in JS.

In this case, let’s take a look at the properties and methods under the Node type

Node type

  • Attributes (in a certain A specific node calls the following properties through inheritance)

    • nodeType

    • nodeName

    • nodeValue

    • ··············

    • ##childNodes (pointer, pointing to the NodeList object )

    • parentNodes

    • nextSibling

    • ##previousSibling
    • firstChild
    • lastChild
    • ownDocument (each node can only belong to one Document node)
  • Method (Call the following method through inheritance on a specific node)

    • ··· Find node·· ·
    • The method to find elements is located in the Document type
    • ················· ·······
    • ··· Insert node···
    • appendChild(ele)
    • insertBefore(ele, target)
    • ##························
    • ··· Delete node···
    • removeChild(ele)
    • ···· ··················
    • ··· Replace node···
    • replaceChild(ele, target)
    • ##························

    • ···Copy node···

    • cloneNode(boolean) true: means deep copy, false: means shallow copy

    • ·······················

    • ##··· Processing document nodes··· Rarely used ~

    • normalize()

    • There are only so many properties and methods on the Node type. Let me repeat it again, all of them Other nodes can inherit the properties and methods on the Node type

    • Document type
JS represents documents through the Document type. The document object is an instance of HTMLDocument and represents the entire HTML page. At the same time, the document object is also a property under the window object, so it can be accessed as a global object.

Attribute

  • document.documentElement (representing HTML element), and the HTML element can be obtained through document.childNodes[1]

    • document.body (indicating the body element)

    • document.head (indicating the head element)

    • document.compatMode (indicates which rendering method the browser uses, 'CSS1Compat' means standard mode, 'BackCompat' means mixed mode)

    • document.charset (indicates the actual rendering method used in the document Character set, can also be used to specify a new character set)

    • document.dataset (indicates accessing custom properties through dataset, such as document.dataset.myname)

    • document.docType (represents the element), there is a browser compatibility issue

    • document.title (represents the < title > element)

    • ··· Web page request···

    • ##document.URL (Get URL address)
    • document.domain (Get URL Domain name in , pathname)
    • document.attributes (Get the attributes of a node and return a NamedNodeMap object, similar to NodeList)

  • Method

    • ··· Find the element···

    • ##document.getElementById(id) Returns the element

    • document.getElementsByTagName(classname) returns an HTMLCollection object containing zero or more elements, similar to a NodeList object

    • document.getElementsByName(ele) returns an element with a given name attribute, Also returns an HTMLCollection object

    • document.getElementsByClassName(className) returns all matching NodeList objects (

      This method can be called on the Document type and Element type)

    • document.querySelector(selector) selector means that the CSS selector returns the first element that matches the pattern. If not found, returns null (

      Document type, DocumentFragment type, Element type are all You can call this method)

    • document.querySelectorAll(selector) selector indicates that the CSS selector returns a successfully matched NodeList object (

      Document type, DocumentFragment type, Element type You can call this method)

    • ##··· Create element···
    • document.createElement() (created The element is in a free state and needs to be inserted through appendChild)
    • ··· Create a text node···
    • document.createTextNode() (Create Good elements are in a free state and need to be inserted through appendChild)
    • ··· Determine the element size···
    • document.getBoundingClientRect()
    Element type

    Attribute
    • id
    • title
    • lang
    • className
    Method
    • getAttribute(ele) Get an attribute
    • setAttribute(name, value) Set an attribute
    • removeAttribute(ele) Remove an attribute
    • ##getElementsByTagName(ele) Get the element with the tag name ele
    • Text type

Attribute
  • ##nodeValue | data (access the text in the Text node)
    • DocumentFragment type
    Purpose: To operate DOM elements offline to avoid a large number of rearrangements and redraws of DOM nodes, causing performance problems

Method

  • ##document.createDocumentFragment() (indicates creating a document fragment)

    • NodeList object

    • Understanding NodeList and its "close relatives" NamedNodeMap and HTMLCollection is the key to a thorough understanding of the DOM as a whole. All three collections are "dynamic"; in other words, they are updated every time the document structure changes. Therefore, they always hold the latest and most accurate information. Essentially, all NodeList objects are queries that run in real time as the DOM document is accessed.
Element size

Offset dimension

To know the offset of an element on the page, compare the element's offsetLeft and offsetTop with its offsetParent By adding the same attributes and looping like this until the root element, a basically accurate value can be obtained. The following two functions can be used to obtain the left and upper offsets of the element respectively.

function getElementLeft(element){
 var actualLeft = element.offsetLeft;
 var current = element.offsetParent;
 while (current !== null){
 actualLeft += current.offsetLeft;
 current = current.offsetParent;
 }
 return actualLeft;
}

function getElementTop(element){
 var actualTop = element.offsetTop;
 var current = element.offsetParent;
 while (current !== null){
 actualTop += current. offsetTop;
 current = current.offsetParent;
 }
 return actualTop;
}
Copy after login

Client area size (client dimension)

To determine the browser viewport size, you can use the clientWidth and clientHeight of document.documentElement or document.body (in versions prior to IE7).

function getViewport(){
 if (document.compatMode == "BackCompat"){
 return {
 width: document.body.clientWidth,
 height: document.body.clientHeight
 };
 } else {
 return {
 width: document.documentElement.clientWidth,
 height: document.documentElement.clientHeight
 };
 }
}
Copy after login
Scroll dimension(scroll dimension)

·················

Determine the element size

document.getBoundingClientRect() method returns a rectangular object. Contains 4 attributes: left, top, right and bottom. These properties give the element's position on the page relative to the viewport.

The above is the detailed content of Detailed introduction to DOM knowledge. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Let you learn about the shocking win10x system knowledge Let you learn about the shocking win10x system knowledge Jul 14, 2023 am 11:29 AM

Recently, the latest image download of win10X system has been leaked on the Internet. Different from the common ISO, this image is in .ffu format and can currently only be used for Surface Pro7 experience. Although many friends can’t experience it, you can still read the relevant content of the evaluation and enjoy it. Let’s take a look at the latest evaluation of the win10x system! The latest evaluation of the win10x system 1. The biggest difference between Win10X and Win10 first appears after booting up. Buttons are placed in the center of the taskbar. In addition to pinned applications, the taskbar can also display recently launched applications, similar to Android and iOS phones. 2. Another thing is that the “Start” menu of the new system does not support file

Let's talk about knowledge extraction. Have you learned it? Let's talk about knowledge extraction. Have you learned it? Nov 13, 2023 pm 08:13 PM

1. Introduction Knowledge extraction usually refers to mining structured information from unstructured text, such as tags and phrases containing rich semantic information. This is widely used in the industry in scenarios such as content understanding and product understanding. By extracting valuable tags from user-generated text information and applying them to content or products, knowledge extraction is usually accompanied by the classification of the extracted tags or phrases. , is usually modeled as a named entity recognition task. The general named entity recognition task is to identify named entity components and classify the components into place names, person names, organization names and other types; domain-related tag word extraction identifies and divides tag words into Field-defined categories, such as series (Air Force One, Sonic 9), brand (Nike, Li Ning), type (shoes, clothing, digital), style (

Understanding Golang: essential knowledge for developers Understanding Golang: essential knowledge for developers Feb 23, 2024 am 10:51 AM

Golang, also known as Go language, is an open source programming language developed by Google. Since its release in 2007, Golang has gradually emerged in the field of software development and has been favored by more and more developers. As a statically typed, compiled language, Golang has many advantages, such as efficient concurrent processing capabilities, concise syntax, and powerful tool support, making it have broad application prospects in cloud computing, big data processing, network programming, etc. . This article will introduce the basic concepts of Golang,

Understanding Linux Server Security: Essential Knowledge and Skills Understanding Linux Server Security: Essential Knowledge and Skills Sep 09, 2023 pm 02:55 PM

Understanding Linux Server Security: Essential Knowledge and Skills With the continuous development of the Internet, Linux servers are increasingly used in various fields. However, since servers store a large amount of sensitive data, their security issues have also become the focus of attention. This article will introduce some essential Linux server security knowledge and skills to help you protect your server from attacks. Updating and Maintaining Operating Systems and Software Timely updating of operating systems and software is an important part of keeping your server secure. Because every operating system and software

How does a chatbot answer questions through a knowledge graph? How does a chatbot answer questions through a knowledge graph? Apr 17, 2023 am 09:13 AM

Preface In 1950, Turing published the landmark paper "Computing Machinery and Intelligence" (Computing Machinery and Intelligence), proposing a famous judgment principle about robots - the Turing test, also known as the Turing judgment, which states that if the first If the three cannot distinguish the difference between the responses of humans and AI machines, it can be concluded that the machine has artificial intelligence. In 2008, the AI ​​butler Jarvis in Marvel's "Iron Man" let people know how AI can accurately help humans (Tony) solve various matters thrown at them... Figure 1: AI butler Jarvis ( Picture source: Internet) In early 2023, Chat, a free chat robot that broke out in the technology world in a 2C way, became popular.

Learn more about jQuery sibling nodes Learn more about jQuery sibling nodes Feb 27, 2024 pm 06:51 PM

There is no doubt that jQuery is one of the most used JavaScript libraries in front-end development, providing a concise and powerful way to manipulate HTML documents. In jQuery, sibling nodes are elements that have the same parent element as the specified element. A deep understanding of jQuery sibling nodes is crucial for front-end developers. This article will introduce how to use jQuery to operate sibling nodes, and attach specific code examples. 1. To find sibling nodes in jQuery, we can pass

Master the key knowledge and practical skills of HTML global attributes Master the key knowledge and practical skills of HTML global attributes Jan 06, 2024 am 08:40 AM

Essential knowledge and practical skills for learning the global attributes of HTML HTML (HyperTextMarkupLanguage) is a markup language used to create the structure of web pages. When building web pages, we often need to use various tags and attributes to define the appearance and behavior of the page. Among all HTML attributes, global attributes are a very important type of attributes. They can be applied to all HTML tags, providing web developers with powerful flexibility and customization capabilities. Learning and using HTML

Must-learn JSP built-in object knowledge: Understand what are the commonly used built-in objects in JSP Must-learn JSP built-in object knowledge: Understand what are the commonly used built-in objects in JSP Jan 10, 2024 pm 04:39 PM

Necessary knowledge for learning JSP built-in objects: To master the built-in objects in jsp, you need specific code examples. JSP (JavaServerPages) is a dynamic web page development technology. Its advantage is that it combines dynamic programming languages ​​​​(such as Java) and static pages. Features. In JSP, built-in objects play an important role to facilitate developers for data processing and page rendering. This article will introduce some commonly used JSP built-in objects and provide specific code examples to deepen understanding. request pair

See all articles