首页 > 代码库 > js 中的 prototype 和 constructor

js 中的 prototype 和 constructor

var a=function(){

 this.msg="aa";

}

 

a.prototype.say=function(){ alert(‘this is say‘);}

1.只有函数有prototype  ,a.prototype.constructor 指向 a

2.var obj=new a()  obj是没有prototype 对象的,但是有constructor切指向a

3.关于继承

var b=function(){

this.msg="bb";

}

b.prototype=new a();//  将函数b的prototype 指向a的一个实例,则b 继承与a  , new b() 后就可以用 调用父类的 say 方法

3. b继承a  ,最终的msg="bb";

 

技术分享

技术分享

 

参考地址 http://blog.csdn.net/niuyongjie/article/details/4810835

js 中的 prototype 和 constructor