function SuperType(){
this.property = true;
}
SuperType.prototype.getSuperValue = function(){
return this.property;
};
function SubType(){
this.property = false;
}
//继承了 SuperType
SubType.prototype = new SuperType();
var instance = new SubType();
alert(instance.getSuperValue());
为什么值是flase不是true;最好有详细的解答,谢谢谢!!1
慕的地6079101
hahhhha
qq_药药_0
清风流光
精慕门9254224
相关分类