环境对象:指的是 函数 内部特殊的变量 this,它代表着当前函数运行时所处的环境。每个函数都有环境对象this。函数调用的方式不同,this指代的对象不同。
- 普通函数里面this指向的是window
- 谁调用,this就指向谁(是判断this指向的粗略规则)
- 箭头函数没有this
<body>
<button>点击</button>
<script>function fn(){console.log(this) // this指向window}window.fn()fn()const btn = document.querySelector("button")btn.addEventListener("click", function () {console.log(this) // this指向button// btn.style.color = "red" // 以前的写法this.style.color = "red"})
</script>
</body>