标签:
var a=function(config){
this.name=config;
this.out = function(){
alert(1)
}
}
a.name=‘hewenk‘;
a.prototype.inner=function(){
alert(1)
}
var n=new a(‘1234‘);
n.out();//1
n.inner();//1
console.log(n.name)//1234
console.log(a.name);//空 函数表达式的自定义属性实例无法继承
function b(config){
this.name=config;
this.out = function(){
alert(2)
}
}
b.prototype.inner=function(){
alert(2);
}
b.name = ‘1234‘;
var m=new b(‘123‘);
m.out();//2
m.inner();//2
console.log(m.name);//123 构造函数的自定义属性实例无法继承
两没有区别在使用的过程中,都不能继承自定义的属性
标签:
原文地址:http://www.cnblogs.com/-youth/p/5544141.html