JS 中的 this指向问题

作者: 疯也是一种态度_ | 来源:发表于2019-10-24 12:01 被阅读0次

this

this:上下文,会根据执行环境变化而发生指向的改变.
1.单独的this,指向的是window这个对象

alert(this)  // this -> window

2.全局函数中的this

function demo() {
alert(this); // this -> window
}
demo();

在严格模式下,this是undefined.

function demo() {
use strict;
alert(this);// undefined
}
demo();

3.函数调用的时候,前面加上new关键字

所谓构造函数,就是通过这个函数生成一个新对象,这时,this就指向这个对象。

function demo() {
//alert(this); // this -> object`
this.testStr =this is a test;
}
let a = new demo();
alert(a.testStr);// 'this is a test

4.用call与apply的方式调用函数

function demo() {
alert(this);
}
demo.call('abc');// abc
demo.call(null);// this -> window
demo.call(undefined);// this -> window

5.定时器中的this,指向的是window

setTimeout(function() {
alert(this);// this -> window ,严格模式 也是指向window`
},500)

6.元素绑定事件,事件触发后,执行的函数中的this,指向的是当前元素

 window.onload = function() {
  let $btn = document.getElementById(btn);
   $btn.onclick = function(){
   alert(this);// this -> 当前触发
   }
}

7.函数调用时如果绑定了bind,那么函数中的this指向了bind中绑定的元素

window.onload = function() {
let $btn = document.getElementById(btn);
$btn.addEventListener(click,function() {
alert(this); // window
}.bind(window))
}

8.对象中的方法,该方法被哪个对象调用了,那么方法中的this就指向该对象

let name = finget
let obj = {
name: FinGet,
getName: function() {
alert(this.name);
  }
}
obj.getName(); // FinGet
---------------------------分割线----------------------------
let fn = obj.getName;
fn(); //finget this -> window

面试题

var x = 20;
var a = {
x: 15,
fn: function() {
var x = 30;
return function() {
return this.x
}
}
}

console.log(a.fn());
console.log((a.fn())());
console.log(a.fn()());
console.log(a.fn()() == (a.fn())());
console.log(a.fn().call(this));
console.log(a.fn().call(a));

答案

1.console.log(a.fn());

对象调用方法,返回了一个方法。

function() {return this.x}

2.console.log((a.fn())());

a.fn()返回的是一个函数,()()这是自执行表达式。this -> window

20

3.console.log(a.fn()());

a.fn()相当于在全局定义了一个函数,然后再自己调用执行。this -> window

20

4.console.log(a.fn()() == (a.fn())());

true

5.console.log(a.fn().call(this));

这段代码在全局环境中执行,this -> window

20

6.console.log(a.fn().call(a));

this -> a

15

相关文章

  • JS进阶篇-this指向问题

    JS中this的指向问题不同于其他语言,JS中的this不是指向定义它的位置,而是在哪里调用它就指向哪里。 JS中...

  • js中this指向问题

    this的指向在函数定义的时候是无法确定的,只有函数执行的时候才能确定this到底指向谁,实际this指向是调用他...

  • JS中this指向问题

    首先声明,添加删除线的都是不太确定的 下面我们分情况解释: 1、函数调用模式--当一个函数并非一个对象的属性时,那...

  • js中this指向问题?

    This是一个关键字,它代表函数运行时,自动生成的一个内部对象,只能在函数内部使用。 this 是在函数被调用时确...

  • js中this的指向问题

    this是Javascript语言的一个关键字它代表函数运行时,自动生成的一个内部对象,只能在函数内部使用,下面分...

  • js 中 this 的指向问题

  • JS中的this指向问题

    1. this的几种绑定方法 (1)普通函数中的this指向函数的调用点 (2) call明确绑定 (3)bind...

  • JS 中的 this指向问题

    程序员就是没有人情味的原始人,不懂交际。谈不到对象。每天就是查看a-z,0-9加上!@#¥%…/&()+-=/<>...

  • js中的this指向问题

    只要记住这句话,谁调用的就指向谁,既调用函数所处的父层 window 对象 此时的this=>foo,如果改成这样...

  • JS中的this指向问题

    this是我们日常最经常使用的语法之一。通过这篇文章分析一下this的指向问题。说到this就一分为二来看(ES6...

网友评论

    本文标题:JS 中的 this指向问题

    本文链接:https://www.haomeiwen.com/subject/kwprvctx.html