js繼承的5中方式

1:原型繼承 // 創建一個人的函數爲A function pelpeoA(name,age){ //公有屬性 this.name=name; this.age=age; } //共有屬性 pelpeoA.prototype.eat=function(){ console.log('我喜歡吃雪梨') } var newpelpeoA=new pelpeoA('我是哥哥
相關文章
相關標籤/搜索