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

js中this的理解

时间:2017-02-16 14:27:29      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:str   bind   alt   没有   font   logs   定时   this   技术   

this的指向在函数定义的时候是确定不了的,只有函数执行的时候才能确定this到底指向谁实际上this的最终指向的是那个调用它的对象

example:

function Eat(apple){
this.apple=apple//谁用new去实例化this就指代谁
}
var lilei=new Eat(apple);//this指代lilei
var hanmeimei=new Eat(apple);//this指代hanmeimei

当this指代的内容不是自己想要的时候,可以用bind进行绑定

example:
没有用bind绑定时
技术分享



使用bind绑定
技术分享

 


 



js中this的理解

标签:str   bind   alt   没有   font   logs   定时   this   技术   

原文地址:http://www.cnblogs.com/longailong/p/6404748.html

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