摘要: function Person(name,age){ this.name=name; this.age=age; } Person.prototype={ constructor:Person, show(){ console.log("我是show方法"); } } var p1=new Pers 阅读全文
posted @ 2020-11-19 08:28 你是我的救赎 阅读(64) 评论(0) 推荐(0)