JavaScript 中,this 的指向类型有:1. 全局对象;2. 函数调用;3. 构造函数调用;4. 事件处理程序;5. 箭头函数(继承外层 this)。此外,可以使用 bind()、call() 和 apply() 方法显式设置 this 的指向。
JavaScript 中 this 的指向
this 指向的类型
JavaScript 中,this 的指向有以下几种类型:
1. 全局对象
2. 函数调用
const person = { name: "John", greet: function() { console.log(this.name); }}; person.greet();
3. 构造函数调用
const person = new Person("John");
4. 事件处理程序
<button onclick="this.style.color = 'red'">Click me</button>
5. 箭头函数
const person = { name: "John", greet: () => console.log(this.name); };
注意事项
以上是js中this的指向有几种情况的详细内容。更多信息请关注PHP中文网其他相关文章!