标签: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,这样就不会出现找不到原来的对象。
标签:on() javascrip article cells www alt processor syn hat
原文地址:http://www.cnblogs.com/chengxuxing/p/7699519.html