摘要: 1.this的实质是在函数被调用时发生的绑定,它指向什么完全取决于函数在哪里被调用 2.绑定规则 (1)默认绑定 : 对独立函数调用 function foo() { console.log( this.a ); } var a = 2; foo();//2 this解析为windows funct 阅读全文
posted @ 2023-06-13 16:48 青Fire 阅读(70) 评论(0) 推荐(0) 编辑