首页 > 其他分享 >this

this

时间:2023-10-23 16:00:54浏览次数:39  
标签: 调用 函数 对象 bind 绑定 上下文

运行时绑定

全局上下文

image

函数上下文

取决于函数调用的方式,非严格模式
image

image

类上下文

类似于函数,类的构造函数中,类中所有非静态的方法都会被添加到this原型中
image

派生类

super()

bind

创建新的绑定函数,bind只生效一次
image

箭头函数

与封闭词法环境的this保持一致, 创建时的上下文环境?怎么确定???
call,bind,apply来调用箭头函数,它将被忽略
image
this绑定到了他外层函数的this,bar的this在调用中设置的
image

this和对象转换

立即调用:
apply: (this,参数数组)
call: (this,参数列表)
非严格模式:this值不是对象,尝试转为对象
image

作为对象的方法

函数作为对象里的方法被调用,this设置为调用该函数的对象
image

原型链中的this

该方法存在于对象的原型链上,this指向调用这个方法的对象
image

getter和setter中的this

new 函数用作构造函数

默认this所指的对象,手动返回其他对象
image

作为一个DOM事件处理函数

this指向触发事件的元素

作为一个内联事件处理函数

this指向监听器所在的DOM元素
image

https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/this

标签:,调用,函数,对象,bind,绑定,上下文
From: https://www.cnblogs.com/tangshidedabenniao/p/17781892.html

相关文章