function F(){ function C(){ return this; } return C(); } var o = new F(); 请问上面的this值指向的是全局对象还是对象o?
收起
全局对象:window
报告相同问题?