2020年10月13日
摘要: 一、子类的原型对象——类式继承 把父类实例直接赋值给 prototype 属性,代码如下: 1 // 声明父类 2 function SuperClass() { 3 this.superValue = true; 4 } 5 // 为父类添加共有方法 6 SuperClass.prototype. 阅读全文
posted @ 2020-10-13 16:02 大黑ylx 阅读(131) 评论(0) 推荐(0) 编辑