function f1(){
var name = 111;
function f2(){
console.log(this.name);
}
return f2();
f1();
新手问一下,为什么输出的值不是undefined而是空字符串
相关分类