var a=11 function test1(){ this.a=22; let b=function(){ console.log(this.a); }; b(); } var x=new test1();
返回11 这个this为什么指向window?
米脂
相关分类