一招深拷贝 jy87771107 2019-01-11 79 阅读1分钟 function deepClone(obj){ let _obj = JSON.stringify(obj), objClone = JSON.parse(_obj); return objClone }