首页 > 代码库 > this的指向

this的指向

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>

</style>

</head>
<body>

<script type="text/javascript">
//this:1.当前发生事件的对象  2.当前的方法属于谁
var arr = [1,2,3,4];

arr.a = 12;

arr.show = function(){
    alert(this.a);// 弹出值为12,this就是arr
}
arr.show();


oDiv.onclick = function(){
    alert(this);//this代表oDiv
}

</script>
</body>
</html>

 

this的指向