作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
Possible Duplicates:
Javascript closure inside loops - simple practical example
Javascript closure “stores” value at the wrong time
for (var i = 1; i <= 3; ++i) {
setTimeout(function() {
alert(i);
}, i * 1000);
}
这会提醒“4”3 次。我知道为什么,但我不会在这里破坏它......虽然我忘记了如何修复它。解决这个问题的简洁方法是什么?
我是一名优秀的程序员,十分优秀!