js原型链演示06-继承prototype模式
2015-10-31 08:19:46 5 举报
js原型链演示06-继承prototype模式
作者其他创作
大纲/内容
constructor
函数Object()
Object.prototype
function Animal(){this.species = \"动物\";}
Animal.prototype
Cat旧的原型对象Cat { }
var cat1 = new Cat(\"大毛\
Null
原型对象Object { }
原型对象Animal { }
__proto__
对象Animal {species: \"动物\"}
Cat.prototype = new Animal();
Cat.prototype
函数Animal()
对象Cat1 {name: \"大毛\
收藏
0 条评论
下一页