码迷,mamicode.com
首页 > 其他好文 > 详细

Array原型链添加“遍历”方法

时间:2015-05-31 15:16:14      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:

<script>
        //1.在我们之前的项目里向原型链中集成方法时大多代码分析不严密,有时间我在这里会做详细分析;
        Array.prototype.each = function(fn) {
            try {
                this.i || (this.i = 0);
                //在这里,fn.constructor === Function保证了输入的构造类型
                if (this.length > 0 && fn.constructor === Function) {
                    while (this.i < this.length) {
                        var tmpEach = this[this.i];
                        //tmpEach.constructor === Array 保证了递归时的构造类型
                        if (tmpEach && tmpEach.constructor === Array) {
                            tmpEach.each(fn);
                        } else {
                            fn(tmpEach);
                        }
                        this.i ++;
                    }
                }
            } catch (ex) {

            }
            return this;
        }


        var v=[1,2,3,[4,5,[6,7]]];
        v.each(function(item){
            alert(item);
        });
    </script>

 

Array原型链添加“遍历”方法

标签:

原文地址:http://www.cnblogs.com/zzq-include/p/4541903.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!