有一段代码看不懂
This.time=setInterval(function(){
This.style.width=This.offsetWidth+8+"px";
if(This.offsetWidth>=120){
clearInterval(This.time)
}
},30)
这一段代码中,clearInterval(This.time)在setInterval中,可setInterval算出来的值又附加给clearInterval,是这么回事吗?
This.time=setInterval(function(){
This.style.width=This.offsetWidth+8+"px";
if(This.offsetWidth>=120){
clearInterval(This.time)
}
},30)
这一段代码中,clearInterval(This.time)在setInterval中,可setInterval算出来的值又附加给clearInterval,是这么回事吗?
2016-11-24
举报