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的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript学习目录

0517JS综合练习挂事件练习

js产品分类列表练习

PHP 中的Closure

js练习 原型

js练习-控制div属性