摘要: 一、继承的相关代码(另): // 继承关系 function People(name){ this.name = name; } People.prototype.showName = function(){ console.log(this.name); } function Student(){ 阅读全文
posted @ 2021-11-17 18:47 小张同学的派大星吖 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 继承的相关代码: <script> function Car(name,speed){ this.name = name; this.speed = speed; // 不规范的 写在方法里面会重复加载 // this.showName = function(){ // console.log(th 阅读全文
posted @ 2021-11-17 18:35 小张同学的派大星吖 阅读(48) 评论(0) 推荐(0) 编辑