美文网首页
this对象

this对象

作者: 方_糖 | 来源:发表于2018-11-27 14:40 被阅读0次

1.独立函数调用时 , this 指向全局对象(this等于window)

如:

<!--html -->
<a onclick="closeIt()" id="close" href="#">点我</a>
<!--javascript-->
<script>
  function closeIt(){
    console.log(this);
  }
</script>

此时输出(全局对象)
Window {postMessage: ƒ, blur: ƒ, focus: ƒ, close: ƒ, parent: Window, …}

2.函数被作为某个对象的方法调用时,this等于那个对象

如:

<!--html -->
 <a onclick="closeIt(this)" id="close" href="#">点我</a>
<!--javascript-->
<script>
  function closeIt(a){
    console.log(a);
  }
</script>

此时输出
<a onclick="closeIt(this)" id="close" href="#">点我</a>

相关文章

网友评论

      本文标题:this对象

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