javaScript中的this作用域

Posted kerryqpw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javaScript中的this作用域相关的知识,希望对你有一定的参考价值。

javascript中的this作用域

  javaScript中的this作用域java的区别是,java中的this是在编译中确定,

     javaScript中的this是在运行时确定的,不同的调用方式,决定js中的this指向不同的对象。

 

代码实现:

  //this作用域
  function sayName(){
    console.log(this.name);
    console.log(this ===d1);
    console.log(this ===d2);
    console.log(this ===window);

  }
  sayName();

  function Person(name,age){
    this.name = name;
    this.age = age;
    this.sayName = sayName;
  }

  var d1 = new Person("ricky",24);
    d1.sayName();

    var d2 = new Person("rose",24);
  d2.sayName();

 

执行:sayName();时,这句打印的值为true  console.log(this ===window);

执行:d1.sayName();时,这句打印的值为true  console.log(this===d1);

执行:d2.sayName();时,这句打印的值为true  console.log(this ===d2);

 





















以上是关于javaScript中的this作用域的主要内容,如果未能解决你的问题,请参考以下文章

javascript中的this与函数讲解

JavaScript中的作用域以及this变量

JavaScript基础 作用域 this 原型

avascript中的this与函数讲解

全面理解JavaScript中的 this

javascript关于this的用法