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>
网友评论