javascript 克隆对象#js #object
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 克隆对象#js #object相关的知识,希望对你有一定的参考价值。
function clone(obj) {
if (null == obj || "object" != typeof obj) return obj;
var copy = obj.constructor();
for (var attr in obj) {
if (obj.hasOwnProperty(attr)) copy[attr] = obj[attr];
}
return copy;
}
function clone(obj) {
var copy;
// Handle the 3 simple types, and null or undefined
if (null == obj || "object" != typeof obj) return obj;
// Handle Date
if (obj instanceof Date) {
copy = new Date();
copy.setTime(obj.getTime());
return copy;
}
// Handle Array
if (obj instanceof Array) {
copy = [];
for (var i = 0, len = obj.length; i < len; i++) {
copy[i] = clone(obj[i]);
}
return copy;
}
// Handle Object
if (obj instanceof Object) {
copy = {};
for (var attr in obj) {
if (obj.hasOwnProperty(attr)) copy[attr] = clone(obj[attr]);
}
return copy;
}
throw new Error("Unable to copy obj! Its type isn't supported.");
}
以上是关于javascript 克隆对象#js #object的主要内容,如果未能解决你的问题,请参考以下文章
javascript 克隆对象#js #object
javascript 克隆对象#js #object
原生JavaScript实现对象的混合与克隆效果,带完整版解析代码[helpers.js]
原生JavaScript实现对象的混合与克隆效果,带完整版解析代码[helpers.js]
js 克隆对象(转)
JS----对象的合并与克隆与数组的深浅克隆