


javascript Get HTML DOM parent, child, adjacent nodes_javascript skills
In the development of Web applications, especially Web 2.0 programs, it is often necessary to obtain an element in the page and then update the style, content, etc. of the element. How to obtain the elements to be updated is the first problem to be solved. Fortunately, there are many ways to obtain nodes using JavaScript. Here is a brief summary (the following method was tested in IE7 and Firefox2.0.0.11):
1. Through the top-level document Node acquisition:
(1) document.getElementById(elementId): This method can accurately obtain the required element through the ID of the node, which is a relatively simple and fast method. If the page contains multiple nodes with the same ID, only the first node will be returned.
Nowadays, many JavaScript libraries such as prototype and Mootools have appeared, which provide a simpler method: $(id), and the parameter is still the id of the node. This method can be seen as another way of writing
document.getElementById(), but the function of $() is more powerful. For specific usage, please refer to their respective API documents.
(2) document.getElementsByName(elementName): This method gets the node by its name. As can be seen from the name, this method returns not a node element, but an array of nodes with the same name. Then, we can loop through a certain attribute of the node to determine whether it is the required node.
For example: In HTML, checkbox and radio use the same name attribute value to identify elements in a group. If we want to get the selected element now, we first get the shuffled element, and then loop to determine whether the checked attribute value of the node is true.
(3) document.getElementsByTagName(tagName): This method obtains the node through its Tag. This method also returns an array, for example:
document.getElementsByTagName('A') will return All hyperlink nodes on the page. Before obtaining the node, the type of the node is generally known, so it is relatively simple to use this method. But the disadvantage is also obvious, that is, the returned array may be very large, which will waste a lot of time. So, is this method useless? Of course not. This method is different from the two above. It is not a proprietary method of the document node and can also be applied to other nodes, which will be mentioned below.
2. Get through the parent node:
(1) parentObj.firstChild: It can be used if the node is the first child node of a known node (parentObj) This method. This attribute can be used recursively, that is, it supports the form of
parentObj.firstChild.firstChild.firstChild..., so that deeper nodes can be obtained.
(2) parentObj.lastChild: Obviously, this attribute is to get the last child node of the known node (parentObj). Like firstChild, it can also be used recursively.
In use, if we combine the two, we will achieve a more exciting effect, namely: parentObj.firstChild.lastChild.lastChild...
(3) parentObj.childNodes: Get the You know the array of child nodes of a node, and then you can find the required node through looping or indexing.
Note: After testing, it was found that on IE7, what is obtained is the array of direct child nodes, while on Firefox2.0.0.11, what is obtained is all child nodes, including the child nodes of the child node.
(4) parentObj.children: Get the direct child node array of a known node.
Note: After testing, on IE7, the effect is the same as childNodes, but Firefox2.0.0.11 does not support it. This is why I use a different style than other methods. Therefore its use is not recommended.
(5) parentObj.getElementsByTagName(tagName): The usage method will not be described in detail. It returns an array of child nodes of the specified value among all child nodes of the known node. For example:
parentObj.getElementsByTagName('A') returns all hyperlinks in known child nodes.
3. Obtain through adjacent nodes:
(1) neighborNode.previousSibling: Get the previous node of the known node (neighbourNode). This attribute is the same as the previous firstChild , lastChild seems to be able to be used recursively.
(2) neighborNode.nextSibling: Get the next node of the known node (neighbourNode), also supports recursion.
4. Obtain through child nodes:
(1) childNode.parentNode: Get the parent node of a known node.
The methods mentioned above are just some basic methods. If you use JavaScript libraries such as Prototype, you may also get other different methods, such as obtaining through the class of the node, etc. However, if you can flexibly use the above methods, I believe you should be able to handle most programs.

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

AI Hentai Generator
Generate AI Hentai for free.

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

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.
