其他分享
首页 > 其他分享> > Day2-JS-this 关键字

Day2-JS-this 关键字

作者:互联网

JavaScript this 关键字

一、对象中的this

var person = {
  firstName: "John",
  lastName : "Doe",
  id     : 5566,
  fullName : function() {
    return this.firstName + " " + this.lastName;
  }
};

二、单独使用 this

<script>
var x = this;
document.getElementById("demo").innerHTML = x;
</script>

这个得到的结果就是:[object Window]

===直击单独的使用this ,this 指向了 window 对象

 

三、事件中的 this

<button onclick="this.style.display='none'">点我后我就消失了</button>

这个this表示的就是这个标签button了,

 

四、显式函数绑定

在 JavaScript 中函数也是对象,对象则有方法,apply 和 call 就是函数对象的方法。这两个方法异常强大,他们允许切换函数执行的上下文环境(context),即 this 绑定的对象。

在下面实例中,当我们使用 person2 作为参数来调用 person1.fullName 方法时, this 将指向 person2, 即便它是 person1 的方法

①知识点:

    1、即使是调用了person1这个对象里面的函数,但是后面加了call(person2)也就把this转变为指向person2了

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <h2>JavaScript this 关键字</h2>
<p>实例中 <strong>this</strong> 指向了 person2,即便它是 person1 的方法:</p>

<p id="demo"></p>

<script>
    var person1={
        fullName:function(){
            return this.firstName+" "+this.lastName;
        }
    }
    var person2={
        firstName:"c",
        lastName:"j"
    }
    var x=person1.fullName.call(person2);
    document.getElementById("demo").innerHTML = x; 
</script>
</body>
</html>
View Code

 

归纳:

this 的多种指向:

标签:函数,指向,对象,Day2,JS,person2,关键字,person1,var
来源: https://www.cnblogs.com/SCAU-gogocj/p/13111020.html