js练习 closure
Posted the important thing is not to
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js练习 closure相关的知识,希望对你有一定的参考价值。
window.onload = function() {
for (var i = 1; i < 4; i++) {
var id = document.getElementById("a" + i);
//id.onclick = (function(i) {
// return function() {
// alert(i);
// }
//})(i);
id.onclick = function (i) {
alert(this);
return function () {
alert(this);
alert(i);
}
}(i);
}
}
以上是关于js练习 closure的主要内容,如果未能解决你的问题,请参考以下文章