function a(){ y = function () { x = 2; }; return function () { var x = 3; y(); console.log(this.x); debugger; }.apply(this, arguments);}a(); //2为什么是输出 2。
添加回答
举报
0/150
提交
取消