摘要: 1.this 全局作用域下默认指向window 2. 函数的独立调用 this 指向window 3. 被嵌套函数独立调用时 this指向window 1 let obj = { 2 a:20, 3 foo:function(){ 4 function test(){ 5 console.log(t 阅读全文
posted @ 2021-01-24 16:15 JSJH 阅读(89) 评论(0) 推荐(0) 编辑