美文网首页
JavaScript - this

JavaScript - this

作者: 一世长安乱 | 来源:发表于2018-04-12 16:16 被阅读0次

    this对象是指运行时期基于环境所绑定的总是指向调用者

    var a=1;
    function test() {
      this.a=2; 
    }
    test();          // window调用了函数,所以this指向window
    alert(test.a);   // undefined
    alert(a);        // 2
    

    相关文章

      网友评论

          本文标题:JavaScript - this

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