令人困惑的Javascript原型有效

时间:2016-11-04 04:18:41

标签: javascript object prototype

function A() {
 this.width=50;
 this.container = '#container';
}
function B() {
  this.width = 999;
  A.call(this)
}
var ball = new B()
ball.width = 50 

我理解b.width = 50.如果我想宽度为999怎么办?我只想借#34;容器"财产价值。

0 个答案:

没有答案