fcn.prototype.a = function() {}fcn.prototype.b = function() {}请问 在a里面能直接调用b吗?
fcn.prototype.a = function(){this.b();}
希望能够帮到你...