标签: 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;容器"财产价值。