摘要: ①原型链式继承 1 function Person(name){ 2 this.name=name; 3 } 4 5 Person.prototype.getName=function(){ 6 return this.name; 7 } 8 9 function Male(age){ 10 thi 阅读全文
posted @ 2016-03-05 15:08 北极星空 阅读(280) 评论(0) 推荐(0) 编辑