Home Web Front-end JS Tutorial Javascript Tips: Don't use the for in statement to traverse the array_jquery

Javascript Tips: Don't use the for in statement to traverse the array_jquery

May 16, 2016 pm 06:18 PM
for Array traversal

First, why not use the for in statement

jqModal is a jquery plug-in that many people have probably used. Inside the jqModal source code, there is a function called hs, which has a nested loop as follows,
Copy code The code is as follows:

for(var i in {jqmShow:1,jqmHide: 1})
for(var s in this[i])
if(H[this[i][s]])
H[this[i][s]].w[i] (this);
return F;
}

The target of the first for in traversal is an anonymous object, no problem.
The second for in traverses and confirms that this[i] is an array object (Array) according to the context.
Many JS pioneers have warned us not to use the for in statement to traverse array objects. In addition to performance, unexpected bugs may occur. If you don't listen to the words of your ancestors, you will suffer the consequences before your eyes.
Today I will take jqModal as an example to explain when this kind of bug will appear, so as to take it as a warning.
Second, the problem reappears
Keywords: native Array class, extended Array class
The potential bug of the for in statement to traverse the array object is: if the native Array class is used by other The js script library has been prototype extended (for example, adding an additional toJSON method, namely Array.prototype.toJSON=xxxx), then the logic of using for in to traverse the expanded Array object will be different from the logic of traversing the native Array object.
For a simple example,

Copy the code The code is as follows:

var x=[1];
for(var s in x){
alert(s);
};

As usual, if Array is a native js class, The above statement should only execute the alert method once, and s is index 0 of the array. However, if the Array class is extended with an additional toJSON method, then the above statement will execute alert twice, the first time s is index 0, and the second time s is the method name 'toJSON'.

If the logic of the code you design is based on the native Array class, and one day your colleague references a third-party JS library on the page, and this library happens to extend the Array class, the result will be difficult Imagine that it is very likely that the original code logic will no longer hold.

Regarding this kind of library that extends native JS classes, a well-known one is prototype.js, which extends many methods to the Array class such as toJSON, each, etc. I now understand why the founder of jquery was so angry about prototype (many people use jquery and prototype on the same page for special reasons. There will be many unexpected conflict problems that cannot be solved by just a noConflict. ). In addition, if the author of jqModal understands my article, he will probably complain about the prototype and say: "It is unwise for me to use for in for array traversal, but the worse thing is the prototype..."

As mentioned above, if you are using jqModal and at the same time using prototype for other reasons, congratulations, you have been tricked. The conflict will cause jqModal's pop-up box to be unable to be automatically closed using the button set by closeClass under ie6 and ie7. Trace the debugging code and you will find that the exception is in the for in loop of the hs method mentioned at the beginning of this article. . .
3. Solve the problem
When traversing the array, use for var statement instead of for in.
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)

17 ways to solve the kernel_security_check_failure blue screen 17 ways to solve the kernel_security_check_failure blue screen Feb 12, 2024 pm 08:51 PM

Kernelsecuritycheckfailure (kernel check failure) is a relatively common type of stop code. However, no matter what the reason is, the blue screen error causes many users to be very distressed. Let this site carefully introduce 17 types to users. Solution. 17 solutions to kernel_security_check_failure blue screen Method 1: Remove all external devices When any external device you are using is incompatible with your version of Windows, the Kernelsecuritycheckfailure blue screen error may occur. To do this, you need to unplug all external devices before trying to restart your computer.

How to uninstall Skype for Business on Win10? How to completely uninstall Skype on your computer How to uninstall Skype for Business on Win10? How to completely uninstall Skype on your computer Feb 13, 2024 pm 12:30 PM

Can Win10 skype be uninstalled? This is a question that many users want to know, because many users find that this application is included in the default program on their computers, and they are worried that deleting it will affect the operation of the system. Let this website help users Let’s take a closer look at how to uninstall Skype for Business in Win10. How to uninstall Skype for Business in Win10 1. Click the Windows icon on the computer desktop, and then click the settings icon to enter. 2. Click "Apply". 3. Enter "Skype" in the search box and click to select the found result. 4. Click "Uninstall". 5

How to use for to find the factorial of n in JavaScript How to use for to find the factorial of n in JavaScript Dec 08, 2021 pm 06:04 PM

How to use for to find n factorial: 1. Use the "for (var i=1;i<=n;i++){}" statement to control the loop traversal range to "1~n"; 2. In the loop body, use "cj *=i" Multiply the numbers from 1 to n, and assign the product to the variable cj; 3. After the loop ends, the value of the variable cj is the factorial of n, and then output it.

What is the difference between foreach and for loop What is the difference between foreach and for loop Jan 05, 2023 pm 04:26 PM

Difference: 1. for loops through each data element through the index, while forEach loops through the data elements of the array through the JS underlying program; 2. for can terminate the execution of the loop through the break keyword, but forEach cannot; 3. for can control the execution of the loop by controlling the value of the loop variable, but forEach cannot; 4. for can call loop variables outside the loop, but forEach cannot call loop variables outside the loop; 5. The execution efficiency of for is higher than forEach.

What are the common flow control structures in Python? What are the common flow control structures in Python? Jan 20, 2024 am 08:17 AM

What are the common flow control structures in Python? In Python, the flow control structure is an important tool used to determine the execution order of the program. They allow us to execute different blocks of code based on different conditions, or to execute a block of code repeatedly. The following will introduce common process control structures in Python and provide corresponding code examples. Conditional statements (if-else): Conditional statements allow us to execute different blocks of code based on different conditions. Its basic syntax is: if condition 1: #when condition

Use the Go language for loop to quickly implement the flip function Use the Go language for loop to quickly implement the flip function Mar 25, 2024 am 10:45 AM

Implementing the flip function using Go language can be implemented very quickly through a for loop. The flip function is to reverse the order of elements in a string or array, and can be applied in many scenarios, such as string flipping, array element flipping, etc. Let's take a look at how to use the for loop of Go language to realize the flip function of strings and arrays, and attach specific code examples. String flipping: packagemainimport(&quot;fmt&quot;)fun

Comparison of the pros and cons of iterators and for loops in Java Comparison of the pros and cons of iterators and for loops in Java Apr 22, 2023 pm 02:28 PM

1. Conceptual understanding for loop: It is a general structure that supports iteration. It is the most effective and flexible loop structure. Iterator: It is obtained through the iterator() method of the collection, so we say that it exists dependent on the collection. Foreach: By reading the source code, we also found an Iterable interface. It contains an iterator() method that generates an Iterator object, and the Iterator object is used by foreach to move in the sequence. Can be used for any object that implements the Iterable interface. 2. Efficiency comparison in efficiency instance ArrayList: Listintegers=Lists.newArrayLi

How to use arrays in PHP How to use arrays in PHP May 11, 2023 pm 03:36 PM

PHP is a powerful programming language that provides a powerful data structure through arrays that can help us manage and process complex data. At the same time, arrays are also one of the most commonly used data types in PHP, which allow us to put multiple data values ​​into a single variable. In this article, we will discuss how to use arrays in PHP. Creating an Array In PHP, we can use the array() function to create an array. For example, the following code creates an array of three strings: $myArra

See all articles