玩笑过后

导航

2020年2月27日 #

对象深拷贝deepCopy

摘要: function type(obj){ return Object.prototype.toString.call(obj).slice(8,-1); } function deepCopy(target,cloneObj){ var copy; for(var i in cloneObj){ // 阅读全文

posted @ 2020-02-27 14:59 玩笑过后 阅读(367) 评论(0) 推荐(0) 编辑