function a(){
y = function () {
x = 2;
};
return function () {
var x = 3;
y();
console.log(this.x);
debugger;
}.apply(this, arguments);
}
a(); //2
为什么是输出 2。
2
POPMUISE
相关分类