假设我有以下示例:
例子一
$('.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
catspeake
郎朗坤
梦里花落0921
相关分类