摘要: 构造函数的继承 现在有一个Father构造函数 function Father(name, age) { this.name = name; this.age = age; } Father.prototype.song = function () { console.log(‘父亲的原型对象函数’ 阅读全文
posted @ 2021-08-13 22:18 无树菩提 阅读(124) 评论(0) 推荐(0) 编辑