摘要: 原始生成实例对象的方法是通过构造函数: function Person(name, age) { this.name = name; this.age = age } Person.prototype.sayName = function () { console.log(this.name); } 阅读全文
posted @ 2017-08-16 15:51 汪培 阅读(791) 评论(0) 推荐(0) 编辑