摘要: function People(name){ this.name = name; } People.prototype.showName=function(){ console.log(this.name); } function Student(){ } Student.prototype=new 阅读全文
posted @ 2021-11-17 16:41 六月沉 阅读(23) 评论(0) 推荐(0)