摘要: 1. js 其实是一个非面向对象的语言,通过对象的深浅复制完成继承2. 继承方法继承的方法有两种1)prototype 原型模式举个例子var Animal = function () { this.type = 'animal'; this.tmp = {name:'hehe'}; ... 阅读全文
posted @ 2015-04-28 00:12 空城夕 阅读(156) 评论(0) 推荐(0) 编辑