Home > Web Front-end > JS Tutorial > body text

Efficiently obtain which child element the current element is of the parent element_javascript skills

WBOY
Release: 2016-05-16 17:19:58
Original
3328 people have browsed it

For example, when processing events, sometimes you need to know which child node is currently clicked, but the HTML DOM itself does not directly provide the corresponding attributes, so you need to calculate it yourself.

From an index number, it is easy to get the child node or child element corresponding to the index. Just use parentNode.childNodes[index] or parentNode.children[index] directly.

But conversely, knowing a node or element object is not so straightforward to know its index number.

For some special elements, HTML DOM has corresponding attributes indicating their index numbers, mainly the TD and TR elements of tables.

Table cell TD element has cellIndex attribute.

The table row TR element has a rowIndex attribute.

If your processing target happens to be a table, use these two attributes first.

But general nodes or elements do not have attributes such as childNodeIndex or childElementIndex.

Solutions are mainly divided into two categories:

1. Pre-calculate and cache the index number of the node (can be stored in node attributes or js variables).

2. Real-time calculation requires traversing some nodes.

In application, one of the above two types of solutions can be selected according to different actual situations.

Scenarios where option 1 is applicable:

When the DOM structure will not change and the index of individual nodes needs to be obtained frequently, option 1 can be used.

The advantage is that subsequent reading is fast, but the disadvantage is that initialization requires overhead and needs to be re-initialized after the DOM structure changes.

Situations where option 2 is applicable:

The DOM structure may change, and the index of individual nodes is not obtained particularly frequently, option 2 can be used.

The advantage is that it is not affected by DOM structure changes, does not pollute the DOM structure, and has no initialization overhead. The disadvantage is that it is not suitable for high-frequency calls.

Generally speaking, it is better to adopt option 2, because usually the size of the DOM tree is relatively limited, and one cycle of loops will not significantly reduce the overall performance, and its advantages are significant.

For IE browser, there is a more direct method.

From IE4 to IE11, there is a sourceIndex attribute. This attribute represents the order of the elements in the DOM tree. Comparing the difference in the sourceIndex of the element and the parent element makes it easy to know which child element the element is.

I wrote a function to differentiate the processing. Under IE, sourceIndex is used for efficient judgment, while for non-IE, general traversal is used.

Copy code The code is as follows:

function getChildrenIndex(ele){
//IE is simplest and fastest
if(ele.sourceIndex){
return ele.sourceIndex - ele.parentNode.sourceIndex - 1;
}
//other browsers
var i=0;
while(ele = ele.previousElementSibling){
i ;
}
return i;
}

The above function just calculates the element Element, which is nodeType Nodes with a value of 1, text nodes, annotation nodes, etc. will not be counted. If you need to calculate all nodes, sourceIndex cannot be used, because this attribute is only for Element. previousElementSibling should also be changed to previousSibling accordingly. Then it must be written as the following function:
Copy code The code is as follows:

function getNodeIndex(node){
var i=0;
while(ele = ele.previousSibling ){
i; The performance of testing this method is very poor. Its internal implementation mechanism is definitely not like IE that caches resource index numbers. If this method is extremely efficient, it can be calculated using the dichotomy method to improve efficiency, but it is not possible yet.


Final summary:

For table TD and TR elements, use the cellIndex and rowIndex attributes first.

For IE, the sourceIndex attribute is preferred. In other cases, use previousElementSibling or previousSibling to traverse.

The performance of the compareDocumentPosition method is very poor.
Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!