摘要: <script> function Car(name,speed){ this.name=name; this.speed=speed; } Car.prototype.showName=function(){ console.log(this.name) } var car=new Car("奥迪 阅读全文
posted @ 2021-11-17 19:43 翟莹萍 阅读(23) 评论(0) 推荐(0) 编辑