码迷,mamicode.com
首页 > Web开发 > 详细

js中的继承

时间:2019-04-23 09:51:00      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:fun   ima   height   继承   mono   nts   绑定   this   span   

<script>
//js中的继承
function Animal(){
this.kind = "animal";
}
Animal.prototype.type = "water";
//绑定构造函数,原型中的属性和方法不会被继承。
function Cat(Name,Color){
this.Name = Name;
this.Color = Color;
Animal.apply(this.arguments);
}
var cat = new Cat("tom","watth");
console.log(cat);
//原型指向父类对象,继承父类中的所有属性和方法,包括原型中的内容
function Animal(){
this.kind = "animal";
}
Animal.prototype.type = "water";
function Cat(name,Color){
this.name = name;
this.Color = Color;
}
Cat.prototype = new Animal();
var cat = new Cat("tom","white");
console.log(cat);
</script>

js中的继承

标签:fun   ima   height   继承   mono   nts   绑定   this   span   

原文地址:https://www.cnblogs.com/wtdall/p/10754337.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!