美文网首页
js中关于this的指向问题的经典题目

js中关于this的指向问题的经典题目

作者: spencer_sun | 来源:发表于2020-05-24 14:11 被阅读0次
    window.name = 'window';
    function A() {
      console.log(age); // undefined
      var age = 12;
      this.name = 'spencer';
      console.log(this.name); // spencer
      console.log(this.age); //undefined
    }
    
    A.prototype.getName = function() {
      console.log(this.name + 1); // window+1
    };
    var a = new A();
    var b = a.getName;
    b();
    
    

    具体关于this指向的问题, 可以参阅:你不知道的js上册

    相关文章

      网友评论

          本文标题:js中关于this的指向问题的经典题目

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