About nextsibling attributes of DOM elements use note points

Source: Internet
Author: User

In a front-end development process, the blogger uses the NextSibling attribute of the DOM element to get the next sibling element, but gets unintended results. The code snippet is as follows

<!DOCTYPE HTML><HTML><Body><ul>  <LiID= "Coffee">Coffee</Li>  <li id= "Tea">Tea</Li></ul><Buttononclick= "myFunction ()">Try</Button><Script>functionmyFunction () {Console.info (document.getElementById ("Myli"). nextSibling);}</Script></Body></HTML>

The console prints out

The LI element of id= "Tea" is not expected.

What is this for?

It turns out that the DOM also sees the wrapping of the element as an element (Textnode), which is peer to the LI element, so nextsibling points to the Textnode element.

If you modify the code to the following form

<!DOCTYPE HTML><HTML><Body><ul>  <LiID= "Coffee">Coffee</Li><LiID= "Tea">Tea</Li></ul><Buttononclick= "myFunction ()">Try</Button><Script>functionmyFunction () {Console.info (document.getElementById ("Myli"). nextSibling);}</Script></Body></HTML>

The test result is the desired result. (also: this attribute exists for the previoussibling attribute of the same class)

In the DOM, both text and attributes belong to nodes, which should be noted during development.

About nextsibling attributes of DOM elements use note points

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.