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