码迷,mamicode.com
首页 > Web开发 > 详细

js this指向

时间:2017-12-09 18:09:11      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:script   cti   style   his   type   asc   fun   text   ext   

<script type="text/javascript">   
function f(){
    console.log(this)
}
var obj = {}
f();    //指向window
f.apply(obj)  //指向obj
</script>

 

js this指向

标签:script   cti   style   his   type   asc   fun   text   ext   

原文地址:http://www.cnblogs.com/dujunfeng/p/8011830.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!