宋咯咯

导航

2017年11月25日 #

js原型继承四步曲

摘要: <sctript> //1.创建父类 function Parent(){ this.name = name; } Parent.prototype.age = 20; //2.创建子类 function Child(){ Parent.call(this,"zhangsan"); } //3.确立 阅读全文

posted @ 2017-11-25 17:33 宋咯咯 阅读(177) 评论(1) 推荐(0)