会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
北极星空
管理
2016年3月5日
Javascript学习笔记:6种实现继承的方式
摘要: ①原型链式继承 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)
编辑