Function in loop and closure
3400 단어 function
The root cause is loop statements (such as for, while) don’t have their own scope.
Let’s see an example first:
<ul>
<li>Item1</li>
<li>Item2</li>
<li>Item3</li>
</ul>
var liNodes = document.getElementsByTagName("li");
for (var i = 0; i < liNodes.length; i++) {
liNodes[i].onclick = function() {
alert("You click item " + i);
};
}
Now, if you click each of the list, all will produce a “You click item 3″ alertbox.
The number 3 comes out of the end execution of the loop (0, 1, 2 and out of theloop i === 3).
Obviously, the result is not expected.
If you use JSLint to validate this piece of code, you will get the following warning:
Be careful when making functions within a loop. Consider putting the function ina closure.
According to JSLint’s suggest, we have the first solution:
// GOOD - 0
function clickNode(liNode, i) {
liNode.onclick = function() {
alert("You click item " + i);
};
}
var liNodes = document.getElementsByTagName("li");
for (var i = 0; i < liNodes.length; i++) {
clickNode(liNodes[i], i);
}
If you don’t want to create another function, consider using anonymous funtion:
// GOOD - 1
var liNodes = document.getElementsByTagName("li");
for (var i = 0; i < liNodes.length; i++) {
(function(i) {
liNodes[i].onclick = function() {
// You click item 0
// You click item 1
// You click item 2
alert("You click item " + i);
};
})(i);
}
Notice: The self-executing function create a context scope which contains a localvariable i.
When the click event occurs, the variable i is coming from the closure which isjust the self-executing function scope.
There are many ways to solve this problem, following are another three ways:
// GOOD - 2
var liNodes = document.getElementsByTagName("li");
$.each(liNodes, function(i, item) {
$(item).click(function() {
// You click item 0
// You click item 1
// You click item 2
alert("You click item " + i);
});
});
// GOOD - 3
$("li").each(function(i, item) {
$(item).click(function() {
// You click item 0
// You click item 1
// You click item 2
alert("You click item " + i);
});
});
// PREFERED - 4
var liNodes = $("li").click(function(event) {
var i = liNodes.index(this);
// You click item 0
// You click item 1
// You click item 2
alert("You click item " + i);
});
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
콜백 함수를 Angular 하위 구성 요소에 전달이 예제는 구성 요소에 함수를 전달하는 것과 관련하여 최근에 직면한 문제를 다룰 것입니다. 국가 목록을 제공하는 콤보 상자 또는 테이블 구성 요소. 지금까지 모든 것이 구성 요소 자체에 캡슐화되었으며 백엔드에 대한 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.