2016-06-18 |

实现一个函数clone,可以对JavaScript中的5种主要的

A
B
C
D
答案:
解释:
 
Object.prototype.clone = function(){

            var o = this.constructor === Array ? [] : {};

            for(var e in this){

                    o[e] = typeof this[e] === "object" ? this[e].clone() : this[e];

            }

            return o;
    }

0

文档对象模型(DOM对象)

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论