环境对象:指的是 函数 内部特殊的变量 this,它代表着当前函数运行时所处的环境。每个函数都有环境对象this。函数调用的方式不同,this指代的对象不同。文章来源地址https://www.toymoban.com/news/detail-619253.html
- 普通函数里面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>
文章来源:https://www.toymoban.com/news/detail-619253.html
到了这里,关于JavaScript---环境对象this的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!