Home Web Front-end JS Tutorial Code to operate child elements and sibling elements in Dom_DOM

Code to operate child elements and sibling elements in Dom_DOM

May 16, 2016 pm 06:17 PM
child element

First, we must correctly understand what a sub-element is. For example, we wrote a span tag in the web page. And write the text content in span: "Welcome to the Script House", then this text content is the child element of span. Same, if span is contained by a div. Then span is the child element of the div. Look at the following code:


[Ctrl A Select all Note: If you need to introduce external Js, you need to refresh to execute ]

As you can see from the above code "Welcome to the Script House" and span are both contained in a div. But you cannot directly quote the text "Welcome to the Script House" in the div. What I want to tell you is: when obtaining child elements, cross-level acquisition is not allowed. Child elements can only be referenced by direct parent elements! In the same way, this div is also considered a child element in the body tag. But you can't get the span tag directly in the body. You have to get the div in the body and then the span. See the example below:

[Ctrl A Select all Note: If you need to introduce external Js, you need to refresh it to execute
]

I will list what is obtained in Dom Several methods of child elements:

The method to get the first child element in the current element is: firstChild
The method to get the last child element in the current element is: lastChild
Get the child element in the current element The methods of all child elements are: childNodes
Tip: When processing child elements. You will encounter space problems. Because my code above is between body and div. There is no line break between div and span, so this problem can be avoided. But you can't always enter and write code without line breaks. In browsers such as FF, a space element will be formed between lines. They will treat these spaces as a valid element. Please refer to: Dom Techniques for Space Filtering
Understand sub-elements. Let’s talk about what brother elements are again. You should be able to understand it literally. The so-called brother elements actually mean that elements with the same parent element are called brother elements. Look at the code below:

[Ctrl A Select all Note: If you need to introduce external Js, you need to refresh to execute
]

The above code demonstrates: If a div tag contains elements such as div, span, and a, then these included div, span, and a can be called brother elements of each other, because they are all included by the same parent element!
Let’s demonstrate how to get the elements between brothers:

[Ctrl A select all Note:
If you need to introduce external Js, you need to refresh to execute ]
In the above code we set an id attribute for the span element. Maybe you don't know yet, if you want to quickly get an element, you should set an id attribute for the element. Then use the getElementById method to obtain it based on the value of the id attribute.
After obtaining the span element, we used the following Dom methods to obtain the span's previous sibling element div, and the next sibling element a

Use the previousSibling method in the Dom to obtain the current element The previous sibling element
Use the nextSibling method in Dom to get the next sibling element of the current element
For FF browsing, there will also be a space problem when getting sibling elements. Please refer to: Dom skills of space filtering through this article. You should be able to correctly understand or operate child elements and sibling elements. If you need to reprint, please be sure to retain the following information:
Copyright of this article: Web Circle First address: http://www.web666.net/dom/dom_6.html
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)

How to remove last child element in jQuery? How to remove last child element in jQuery? Feb 19, 2024 pm 09:40 PM

jQuery is a popular JavaScript library used to simplify many tasks in web development, including DOM manipulation. In web development, it is often necessary to add, delete, modify and check DOM elements, and deleting the last sub-element is also a common requirement. This article will introduce several methods to delete the last child element using jQuery. Method 1: Use the last() method. jQuery provides the last() method, which can select the last element of the current query result. By combining this

Understand the event bubbling mechanism: Why does a click on a child element affect the event of the parent element? Understand the event bubbling mechanism: Why does a click on a child element affect the event of the parent element? Jan 13, 2024 pm 02:55 PM

Understanding event bubbling: Why does a click on a child element trigger an event on the parent element? Event bubbling means that in a nested element structure, when a child element triggers an event, the event will be passed to the parent element layer by layer like bubbling, until the outermost parent element. This mechanism allows events on child elements to be propagated throughout the element tree and trigger all related elements in turn. To better understand event bubbling, let's look at a specific example code. HTML code: <divid="parent&q

Use the :nth-child(n+3) pseudo-class selector to select the style of child elements whose position is greater than or equal to 3 Use the :nth-child(n+3) pseudo-class selector to select the style of child elements whose position is greater than or equal to 3 Nov 20, 2023 am 11:20 AM

Use the :nth-child(n+3) pseudo-class selector to select the style of child elements whose position is greater than or equal to 3. The specific code example is as follows: HTML code: &lt;divid="container"&gt;&lt;divclass="item"&gt ;First child element&lt;/div&gt;&lt;divclass="item"&

Remove last child element of element using jQuery Remove last child element of element using jQuery Feb 26, 2024 pm 12:39 PM

How to remove the last child element using jQuery? In front-end development, we often encounter operations that require adding, deleting, modifying, and checking page elements. Among them, deleting the last child element is a common requirement. This article will introduce how to use jQuery to delete the last child element, with specific code examples. First, we need to introduce the jQuery library into the page to ensure that its functions can be used. Add the following code to your HTML file: &lt

CSS styles for selecting child elements at specific positions using the :nth-child pseudo-class selector CSS styles for selecting child elements at specific positions using the :nth-child pseudo-class selector Nov 20, 2023 pm 04:43 PM

CSS styles for selecting child elements at specific positions using the :nth-child pseudo-class selector. In CSS, pseudo-class selectors are used to select elements in a specific state in an HTML document. In addition to common pseudo-class selectors such as :hover and :active, there is also a very useful pseudo-class selector called :nth-child, which allows us to select child elements at specific positions. The syntax of the :nth-child pseudo-class selector is as follows: parent element:nth-child(n) where the parent element represents the parent element

How to use jQuery to determine whether an element contains child elements How to use jQuery to determine whether an element contains child elements Feb 28, 2024 am 11:03 AM

How to use jQuery to determine whether an element contains child elements. In web development, we often encounter situations where we need to determine whether an element contains child elements. This function can be achieved very easily using jQuery. In this article, we will introduce how to use jQuery to determine whether an element contains child elements, and give specific code examples. In jQuery, you can use the children() method to select all direct child elements of a specified element. If an element contains child elements, use childr

jQuery implements the function of determining whether an element has child elements jQuery implements the function of determining whether an element has child elements Feb 28, 2024 pm 12:54 PM

jQuery is a JavaScript library widely used in front-end development. It provides a simple and powerful API that can easily manipulate DOM elements. In actual development, sometimes we need to determine whether an element contains child elements. In this case, we need to use jQuery to achieve this. To determine whether an element has child elements, we can use the method provided by jQuery. Here is a sample code that demonstrates how to use jQuery to determine whether an element contains child elements: &lt

jQuery example: How to delete the last child element using jQuery? jQuery example: How to delete the last child element using jQuery? Feb 20, 2024 pm 07:45 PM

Title: jQuery Example: How to delete the last child element using jQuery? In web development, we often encounter situations where we need to manipulate DOM elements through JavaScript. As a widely used JavaScript library, jQuery provides many convenient methods to manipulate DOM elements. This article will use an example to introduce how to use jQuery to delete the last child element, and provide detailed code examples. First, we need to introduce it in the HTML file

See all articles