这是经常被问到的。JavaScript 没有块作用域。变量作用域仅在您调用函数时创建。因此,要将您i
的范围限定为当前循环迭代,您需要在还创建处理程序的函数调用中引用它。
// Create a function that returns a function
function createHandler(i) {
// The value of `i` is local to this variable scope
// Return your handler function, which accesses the scoped `i` variable
return function() {
alert(array[i]);
}
}
var array = ["Hey", "Hi", "Hello"];
for (var i = 0; i < array.length; i++) {
var box = document.createElement("div");
box.className = "box";
// Invoke the `createHandler`, and pass it the value that needs to be scoped.
// The returned function will use its reference to the scoped `i` value.
box.addEventListener("click", createHandler(i), false);
}
我强烈建议您为此使用命名函数,而不是流行的内联函数调用。它可能更有效,并且函数名称提供了有关函数用途的文档。