首页 > 代码库 > 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的指向
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。