this指向全局对象

Posted

tags:

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

当在全部范围内使用this,他将会指向全局对象,一般是window对象,但全局对象不一定只有window,特别是在node.js环境中,作为函数调用时一般作为全局对象

<script type="text/javascript">

  var name="hello";

  console.log(this.name); //顶层对象,一般为window

  function show(){

  console.log(this.name); //顶层对象window

  return function(){

    console.log(this.name); //顶层对象window,返回的是个函数

    }

  }

  var s1 = new show();

  s1();

</script>

以上是关于this指向全局对象的主要内容,如果未能解决你的问题,请参考以下文章

this

this指向全局对象

this指向 - 总结

JavaScript函数中this的指向

js this指向

this的指向的一些问题