obj = { a: 123, b: this.a c: function () { return this.a; } }; obj.b; // undefinedobj.c(); // 123请问这是为什么? 查看完整描述