复制js对象方法(详解)_javascript技巧
程序员文章站
2022-06-07 19:45:55
...
复制代码 代码如下:
CSSCommonJS.DeepCopy = function (json) {
if (typeof json == 'number' || typeof json == 'string' || typeof json == 'boolean') {
return json;
} else if (typeof json == 'object') {
if (json instanceof Array) {
var newArr = [], i, len = json.length;
for (i = 0; i newArr[i] = arguments.callee(json[i]);
}
return newArr;
} else {
var newObj = {};
for (var name in json) {
newObj[name] = arguments.callee(json[name]);
}
return newObj;
}
}
}
上一篇: PHP 保险的电子邮件
下一篇: php 目录遍历、删除 函数的使用介绍