摘要: 1 function clone(object) { 2 function f(_) { 3 4 } 5 6 f.prototype = object; 7 return new f(); 8 } 9 10 var Person = {11 name:'default name',12 arr:['asd', '123'],13 getName:function () {14 return this.name;15 ... 阅读全文
posted @ 2013-06-27 16:54 FreeGod 阅读(134) 评论(0) 推荐(0) 编辑