それは私にとって本当に問題ではありません。回避策ではなく、正しく行う方法を知りたいだけです。for()
といくつかの遅延イベントを使用すると、最後の値のみが考慮されます。
テスト: http://jsfiddle.net/39dQV/
// Using only i (does not work)
for(var i=0; i<10; i++) {
setTimeout(function() {
test1.textContent = i;
}, i * 1000);
}
// Private scope to i (does not work either)
for(var i=0; i<10; i++) {
var x = i;
setTimeout(function() {
test2.textContent = x;
}, i * 1000);
}
// Callback scope (workaround)
function set_textContent(i) {
setTimeout(function() {
test3.textContent = i;
}, i * 1000);
};
for(var i=0; i<10; i++) {
set_textContent(i);
}
正しく動作するようにするには、何をする必要がありますi
か?