admin管理员组文章数量:1343367
I have this Javascript code, which works as expected:
<div class="test"></div>
<script>
setTimeout(function(){$(".test").append("test1")},1000);
setTimeout(function(){$(".test").append("test2")},2000);
</script>
<script src="js/jquery.min.js"></script>
It shows "test1" first and then "test2" a second later, as such: "test1test2", which is what I want.
When I try to do this in a FOR loop, like this:
var timeInterval = 1000;
for (var i = 0, l = 2; i < l; i++ ) {
setTimeout(function(){$(".test").append("test" + i)},timeInterval);
timeInterval += 1000;
}
Then I get "test2" first and then "test2" a second later, as such: "test2test2", which is not what I want.
In fact, if l = 3, then I get "test3test3test3" instead of "test1test2test3". Does anybody know how to solve this problem?
I have this Javascript code, which works as expected:
<div class="test"></div>
<script>
setTimeout(function(){$(".test").append("test1")},1000);
setTimeout(function(){$(".test").append("test2")},2000);
</script>
<script src="js/jquery.min.js"></script>
It shows "test1" first and then "test2" a second later, as such: "test1test2", which is what I want.
When I try to do this in a FOR loop, like this:
var timeInterval = 1000;
for (var i = 0, l = 2; i < l; i++ ) {
setTimeout(function(){$(".test").append("test" + i)},timeInterval);
timeInterval += 1000;
}
Then I get "test2" first and then "test2" a second later, as such: "test2test2", which is not what I want.
In fact, if l = 3, then I get "test3test3test3" instead of "test1test2test3". Does anybody know how to solve this problem?
Share asked Oct 25, 2012 at 21:47 CurtCurt 1,1814 gold badges19 silver badges29 bronze badges 1- I think because the timeout is longer then the speed it is going through i, so by the time it evaluates i it is already at 3 – Scott Selby Commented Oct 25, 2012 at 21:51
5 Answers
Reset to default 5The var i
is incremented to 2 when the setTimeout
is executing the function and so it just prints the i
value as 2 resulting in test2test2
.
You should use a closure to use the instance of i
which will print test1test
.
DEMO: http://jsfiddle/mBBJn/1/
var timeInterval = 1000;
for (var i = 0, l = 2; i < l; i++) {
(function(i) {
setTimeout(function() {
$(".test").append("test" + (i+1))
}, timeInterval);
timeInterval += 1000;
})(i);
}
Edit: used function args.
The for loop doesn't create a new scope, you can use another function to do it:
var timeInterval = 1000;
for (var i = 0, l = 2; i < l; i++) {
setTimeout((function(i) {
return function() {
$(".test").append("test" + i);
}
})(i), timeInterval);
timeInterval += 1000;
}
The variable i
will always refer to the current value of i
(not the value of i
when called) in this situation.
That's how scope works in JavaScript.
See the answer by @Esailija for a solution.
The most obvious way to keep i
in scope is solved in other answers, but since you're using jQuery you have other options.
Use
$.each
instead offor
loop, that way you have access toi
variable anywhere in that scope.Use
delay
instead ofsetTimeout
. For this to work you need to trigger a queue first:$(".test").show(0).delay(timeInterval).append("test" + i)
This is because you aren't capturing the value of i
from the for-loop. You can tweak your code to this to make it work:
var timeInterval = 1000;
for (var i = 0, l = 2; i < l; i++ ) {
(function(i2, timeInterval2) {
setTimeout(function() {
$(".test").append("test" + i2);
}, timeInterval2);
})(i, timeInterval);
timeInterval += 1000;
}
本文标签: jqueryFor Loop in Javascript outputs value only from last iterationStack Overflow
版权声明:本文标题:jquery - For Loop in Javascript outputs value only from last iteration - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743693144a2523046.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论