for循环中带闭包的Settimeout
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for循环中带闭包的Settimeout相关的知识,希望对你有一定的参考价值。
for (i=0;i<11;i++){ //this will create 11 timers that will alert the value of 'i' at the time //the timer was created, all to fire after 1 second //to change what gets alerted, change the "(i)" portion at the end //can be used with more complex functions by adding to what's after "return" //can pass in multiple variables by adding to function(x,y,z), putting those //in proper places w/in the code, and then defining those variables at the end //ie, "(i,j,k)" setTimeout(function(x){return function(){alert(x)};}(i),1000); }
以上是关于for循环中带闭包的Settimeout的主要内容,如果未能解决你的问题,请参考以下文章