js 中的 prototype 和 constructor

var a=function(){

 this.msg="aa";

}

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

1.只有

 Object.prototype
        Array.prototype
        String.prototype
        Date.prototype
        Number.prototype
        Function.prototype

和函数或函数的实例对象有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

原文地址:https://www.cnblogs.com/tiancai/p/6872671.html