假设我有以下示例:
示例一
$('.my_Selector_Selected_More_Than_One_Element').each(function() {
$(this).stuff();
$(this).moreStuff();
$(this).otherStuff();
$(this).herStuff();
$(this).myStuff();
$(this).theirStuff();
$(this).children().each(function(){
howMuchStuff();
});
$(this).tooMuchStuff();
// Plus just some regular stuff
$(this).css('display','none');
$(this).css('font-weight','bold');
$(this).has('.hisBabiesStuff').css('color','light blue');
$(this).has('.herBabiesStuff').css('color','pink');
}
现在,它可能是:
示例二
$('.my_Selector_Selected_More_Than_One_Element').each(function() {
$this = $(this);
$this.stuff();
$this.moreStuff();
$this.otherStuff();
$this.herStuff();
$this.myStuff();
$this.theirStuff();
$this.children().each(function(){
howMuchStuff();
});
$this.tooMuchStuff();
// Plus just some regular stuff
$this.css('display','none');
$this.css('font-weight','bold');
$this.has('.hisBabiesStuff').css('color','light blue');
$this.has('.herBabiesStuff').css('color','pink');
}
重点不在于实际的代码,而在于$(this)
它被使用超过一次/两次/三次或更多次时的使用。
使用示例二比使用示例一在性能方面是否更好(可能会解释为什么或为什么不)?
编辑/注释
我怀疑两个更好;我有点害怕的是,$this
当我不可避免地忘记将 加入$this
到事件处理程序时,我会在我的代码中加入一个潜在的难以诊断的错误,而不是无意中引入了一个潜在的难以诊断的错误。那么我应该使用var $this = $(this)
, 还是$this = $(this)
为此?
谢谢!
编辑
正如 Scott 在下面指出的,这被认为是 jQuery 中的缓存。
http://jquery-howto.blogspot.com/2008/12/caching-in-jquery.html
贾里德