码迷,mamicode.com
首页 > 其他好文 > 详细

浅析 var that = this;

时间:2017-10-20 16:08:17      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:on()   javascrip   article   cells   www   alt   processor   syn   hat   

在阅读别人的代码时,发现别人写的代码中有这么一句:var that = this;,这代表什么意思呢?经过一番查阅,才明白是这么回事。

在JavaScript中,this代表的是当前对象。

var that=this就是将当前的this对象复制一份到that变量中。这样做有什么意义呢?

1
2
3
4
5
6
7
8
$(‘#conten‘).click(function(){
//this是被点击的#conten
var that = this;
$(‘.conten‘).each(function(){
//this是.conten循环中当前的对象
//that仍然是刚才被点击的#conten
});
});

可以看到,this对象在程序中随时会改变,而var that=this之后,that没改变之前仍然是指向当时的this,这样就不会出现找不到原来的对象。

浅析 var that = this;

标签:on()   javascrip   article   cells   www   alt   processor   syn   hat   

原文地址:http://www.cnblogs.com/chengxuxing/p/7699519.html

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