标签:设置 nbsp struct 定义 js对象 new ons 对象 const
function A(){this.name = "hellow"}
function B(){}
B.prototype = new A();
B.prototype.constructor = A //true
//这里强调的是 继承了之后 要记得设置回去
B.prototype.constructor = B;
//这里继承成功之后
b.constructor = B.prototype.constructor //true
标签:设置 nbsp struct 定义 js对象 new ons 对象 const
原文地址:http://www.cnblogs.com/zhujiasheng/p/6150461.html