| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx

jQuery最佳实践

7
JavaScript jQuery Java C/C++ Go 24282 次浏览

上一篇文章jQuery设计思想是一篇入门教程,从设计思想的角度,讲解"怎么使用jQuery"。这篇文章则是更进一步,讲解"如何用好jQuery"

本文主要参考了Addy Osmani的PPT《提高jQuery性能的诀窍》(jQuery Proven Performance Tips And Tricks)。他是jQuery开发团队的成员,具有一定的权威性,提出的结论都有测试数据支持,非常有价值。

1. 使用最新版本的jQuery

jQuery的版本更新很快,你应该总是使用最新的版本。因为新版本会改进性能,还有很多新功能。

下面就来看看,不同版本的jQuery性能差异有多大。这里是三条最常见的jQuery选择语句:

$('.elem')

$('.elem', context)

context.find('.elem')

我们用1.4.2、1.4.4、1.6.2三个版本的jQuery测试,看看浏览器在1秒内能够执行多少次。结果如下:

we1.png 可以看到,1.6.2版本的运行次数,远远超过两个老版本。尤其是第一条语句,性能有数倍的提高。

其他语句的测试,比如.attr("value").val(),也是新版本的jQuery表现好于老版本。

2. 用对选择器

在jQuery中,你可以用多种选择器,选择同一个网页元素。每种选择器的性能是不一样的,你应该了解它们的性能差异。

(1)最快的选择器:id选择器和元素标签选择器

举例来说,下面的语句性能最佳:

$('#id')

$('form')

$('input')

遇到这些选择器的时候,jQuery内部会自动调用浏览器的原生方法(比如getElementById()),所以它们的执行速度快。

(2)较慢的选择器:class选择器

$('.className')的性能,取决于不同的浏览器。

Firefox、Safari、Chrome、Opera浏览器,都有原生方法getElementByClassName(),所以速度并不慢。但是,IE5-IE8都没有部署这个方法,所以这个选择器在IE中会相当慢。

(3)最慢的选择器:伪类选择器和属性选择器

先来看例子。找出网页中所有的隐藏元素,就要用到伪类选择器:

$(':hidden')

属性选择器的例子则是:

$('[attribute=value]')

这两种语句是最慢的,因为浏览器没有针对它们的原生方法。但是,一些浏览器的新版本,增加了querySelector()和querySelectorAll()方法,因此会使这类选择器的性能有大幅提高。

最后是不同选择器的性能比较图

we2.png

可以看到,ID选择器遥遥领先,然后是标签选择器,第三是Class选择器,其他选择器都非常慢。

3. 理解子元素和父元素的关系

下面六个选择器,都是从父元素中选择子元素。你知道哪个速度最快,哪个速度最慢吗?

$('.child', $parent)

$parent.find('.child')

$parent.children('.child')

$('#parent > .child')

$('#parent .child')

$('.child', $('#parent'))

我们一句句来看。

(1) $('.child', $parent)

这条语句的意思是,给定一个DOM对象,然后从中选择一个子元素。jQuery会自动把这条语句转成$.parent.find('child'),这会导致一定的性能损失。它比最快的形式慢了5%-10%。

(2) $parent.find('.child')

这条是最快的语句。.find()方法会调用浏览器的原生方法(getElementById,getElementByName,getElementByTagName等等),所以速度较快。

(3) $parent.children('.child')

这条语句在jQuery内部,会使用$.sibling()和javascript的nextSibling()方法,一个个遍历节点。它比最快的形式大约慢50%。

(4) $('#parent > .child')

jQuery内部使用Sizzle引擎,处理各种选择器。Sizzle引擎的选择顺序是从右到左,所以这条语句是先选.child,然后再一个个过滤出父元素#parent,这导致它比最快的形式大约慢70%。

(5) $('#parent .child')

这条语句与上一条是同样的情况。但是,上一条只选择直接的子元素,这一条可以于选择多级子元素,所以它的速度更慢,大概比最快的形式慢了77%。

(6) $('.child', $('#parent'))

jQuery内部会将这条语句转成$('#parent').find('.child'),比最快的形式慢了23%。

所以,最佳选择是$parent.find('.child')。而且,由于$parent往往在前面的操作已经生成,jQuery会进行缓存,所以进一步加快了执行速度。

具体的例子和比较结果,请看这里

4. 不要过度使用jQuery

jQuery速度再快,也无法与原生的javascript方法相比。所以有原生方法可以使用的场合,尽量避免使用jQuery。

请看下面的例子,为a元素绑定一个处理点击事件的函数:

$('a').click(function(){

alert($(this).attr('id'));

});

这段代码的意思是,点击a元素后,弹出该元素的id属性。为了获取这个属性,必须连续两次调用jQuery,第一次是$(this),第二次是attr('id')。

事实上,这种处理完全不必要。更正确的写法是,直接采用javascript原生方法,调用this.id:

$('a').click(function(){

alert(this.id);

});

根据测试,this.id的速度比$(this).attr('id')快了20多倍。

5. 做好缓存

选中某一个网页元素,是开销很大的步骤。所以,使用选择器的次数应该越少越好,并且尽可能缓存选中的结果,便于以后反复使用。

比如,下面这样的写法就是糟糕的写法:

jQuery('#top').find('p.classA');

jQuery('#top').find('p.classB');

更好的写法是:

var cached = jQuery('#top');

cached.find('p.classA');

cached.find('p.classB');

根据测试,缓存比不缓存,快了2-3倍。

6. 使用链式写法

jQuery的一大特点,就是允许使用链式写法。

$('div').find('h3').eq(2).html('Hello');

采用链式写法时,jQuery自动缓存每一步的结果,因此比非链式写法要快。根据测试,链式写法比(不使用缓存的)非链式写法,大约快了25%。

7. 事件的委托处理(Event Delegation)

javascript的事件模型,采用"冒泡"模式,也就是说,子元素的事件会逐级向上"冒泡",成为父元素的事件。

利用这一点,可以大大简化事件的绑定。比如,有一个表格(table元素),里面有100个格子(td元素),现在要求在每个格子上面绑定一个点击事件(click),请问是否需要将下面的命令执行100次?

$("td").bind("click", function(){

$(this).toggleClass("click");

});

回答是不需要,我们只要把这个事件绑定在table元素上面就可以了,因为td元素发生点击事件之后,这个事件会"冒泡"到父元素table上面,从而被监听到。

因此,这个事件只需要在父元素绑定1次即可,而不需要在子元素上绑定100次,从而大大提高性能。这就叫事件的"委托处理",也就是子元素"委托"父元素处理这个事件。

具体的写法有两种。第一种是采用.delegate()方法:

$("table").delegate("td", "click", function(){

$(this).toggleClass("click");

});

第二种是采用.live()方法:

$("table").each(function(){

$("td", this).live("click", function(){

$(this).toggleClass("click");
});
});

这两种写法基本等价。唯一的区别在于,.delegate()是当事件冒泡到指定的父元素时触发,.live()则是当事件冒泡到文档的根元素后触发,因此.delegate()比.live()稍快一点。此外,这两种方法相比传统的.bind()方法还有一个好处,那就是对动态插入的元素也有效,.bind()只对已经存在的DOM元素有效,对动态插入的元素无效。

根据测试,委托处理比不委托处理,快了几十倍。在委托处理的情况下,.delegate()又比.live()大约快26%。

8. 少改动DOM结构

(1)改动DOM结构开销很大,因此不要频繁使用.append()、.insertBefore()和.insetAfter()这样的方法。

如果要插入多个元素,就先把它们合并,然后再一次性插入。根据测试,合并插入比不合并插入,快了将近10倍。

(2)如果你要对一个DOM元素进行大量处理,应该先用.detach()方法,把这个元素从DOM中取出来,处理完毕以后,再重新插回文档。根据测试,使用.detach()方法比不使用时,快了60%。

(3)如果你要在DOM元素上储存数据,不要写成下面这样:

var elem = $('#elem');

elem.data(key,value);

而要写成:

var elem = $('#elem');

$.data(elem,key,value);

根据测试,后一种写法要比前一种写法,快了将近10倍。因为elem.data()方法是定义在jQuery函数的prototype对象上面的,而$.data()方法是定义jQuery函数上面的,调用的时候不从复杂的jQuery对象上调用,所以速度快得多。(此处可以参阅下面第10点。)

9. 正确处理循环

循环总是一种比较耗时的操作,如果可以使用复杂的选择器直接选中元素,就不要使用循环,去一个个辨认元素。

javascript原生循环方法for和while,要比jQuery的.each()方法,应该优先使用原生方法。

10. 尽量少生成jQuery对象

每当你使用一次选择器(比如$('#id')),就会生成一个jQuery对象。jQuery对象是一个很庞大的对象,带有很多属性和方法,会占用不少资源。所以,尽量少生成jQuery对象。

举例来说,许多jQuery方法都有两个版本,一个是供jQuery对象使用的版本,另一个是供jQuery函数使用的版本。下面两个例子,都是取出一个元素的文本,使用的都是text()方法。你既可以使用针对jQuery对象的版本:

var $text = $("#text");

var $ts = $text.text();

也可以使用针对jQuery函数的版本:

var $text = $("#text");

var $ts = $.text($text);

由于后一种针对jQuery函数的版本不通过jQuery对象操作,所以相对开销较小,速度比较快

32个答案

0

謝謝分享,好漂亮的身材加臉蛋 , 感謝分享 ทางเข้าjoker

0

https://www.jianshu.com/p/0f076c5e8057
https://www.jianshu.com/p/171f8545cde0
https://www.jianshu.com/p/18006481a439
https://www.jianshu.com/p/f9b1a310d1ea
https://www.jianshu.com/p/367a112e7d77
https://www.jianshu.com/p/c9cc8de77352
https://www.jianshu.com/p/286c0a6b7197
https://www.jianshu.com/p/d8f057e88de0
https://www.jianshu.com/p/401d08affee8
https://www.jianshu.com/p/63b5ed107511
https://www.jianshu.com/p/6751f64f562d
https://www.jianshu.com/p/4990caacc312
https://www.jianshu.com/p/77cbb4c7fded
https://www.jianshu.com/p/1a62e16da41c
https://www.jianshu.com/p/f438d1c86cbf
https://www.jianshu.com/p/ff7d1ca3385d
https://www.jianshu.com/p/54368b908c7c
https://www.jianshu.com/p/9e1c30a4c110
https://www.jianshu.com/p/d667959f4dac
https://www.jianshu.com/p/d58f32844953
https://www.jianshu.com/p/bee2636c5984
https://www.jianshu.com/p/ed85fccc2a1b
https://www.jianshu.com/p/4f7ed4457752
https://www.jianshu.com/p/134424857e33
https://www.jianshu.com/p/e4738a69386d
https://www.jianshu.com/p/d3006bf2afcd
https://www.jianshu.com/p/b963a3600ec8
https://www.jianshu.com/p/615ce8ea84c4
https://www.jianshu.com/p/d782fcd99d29
https://www.jianshu.com/p/370a0723a8fb
https://www.jianshu.com/p/c12c7ae43d37
https://www.jianshu.com/p/09053184b70d
https://www.jianshu.com/p/eb7bf02746f1
https://www.jianshu.com/p/8bd67122a2eb
https://www.jianshu.com/p/c6c1ea62ce6b
https://www.jianshu.com/p/37431b219ee7
https://www.jianshu.com/p/bd5357a9be2b
https://www.jianshu.com/p/7e5956cc4af9
https://www.jianshu.com/p/5646185121d1
https://www.jianshu.com/p/f5c7ff7da7e0
https://www.jianshu.com/p/6320777ff88f
https://www.jianshu.com/p/681b90dd4f74
https://www.jianshu.com/p/3e523f4011ba
https://www.jianshu.com/p/91a845ce9d6e
https://www.jianshu.com/p/521f5cf5ebc6
https://www.jianshu.com/p/7f5a4587a14d
https://www.jianshu.com/p/e16dcfe83247
https://www.jianshu.com/p/bd5fda7bc82b
https://www.jianshu.com/p/4c8bf6a8d679
https://www.jianshu.com/p/c123de19b302
https://www.jianshu.com/p/7f569ce889d2
https://www.jianshu.com/p/30c9e5bbdf9d
https://www.jianshu.com/p/6f073a61bb9f
https://www.jianshu.com/p/715c4a7c8168
https://www.jianshu.com/p/643b0a7c4b4e
https://www.jianshu.com/p/562ace34c361
https://www.jianshu.com/p/6829f0a7a264
https://www.jianshu.com/p/95b026b64568
https://www.jianshu.com/p/6d64bce3eb25
https://www.jianshu.com/p/e200b8953733
https://www.jianshu.com/p/6714592f3b5e
https://www.jianshu.com/p/5902adb25ec3
https://www.jianshu.com/p/0500b9f2ee37
https://www.jianshu.com/p/de8c1fbffe26
https://www.jianshu.com/p/72c93554ef15
https://www.jianshu.com/p/c11e5a531c6b
https://www.jianshu.com/p/9e800a4d9d04
https://www.jianshu.com/p/13784725672f
https://www.jianshu.com/p/6dddfd555a85
https://www.jianshu.com/p/2977eefdc7d9
https://www.jianshu.com/p/05e0bc83ce77
https://www.jianshu.com/p/004aecbbee60
https://www.jianshu.com/p/5149399edf36
https://www.jianshu.com/p/322fe208a5e3
https://www.jianshu.com/p/09a3938fe531
https://www.jianshu.com/p/5e78e6463d28
https://www.jianshu.com/p/0e30be95a333
https://www.jianshu.com/p/e833bc5d89ec
https://www.jianshu.com/p/8be3ffb73d59
https://www.jianshu.com/p/75f938962bcb
https://www.jianshu.com/p/a79145940249
https://www.jianshu.com/p/73bd8d000f3d
https://www.jianshu.com/p/84f4a4f84592
https://www.jianshu.com/p/bcc1db7af0f9
https://www.jianshu.com/p/8ef673ede5fe
https://www.jianshu.com/p/f122229b2829
https://www.jianshu.com/p/dc8df7e2c88f
https://www.jianshu.com/p/6b6cb51d9049
https://www.jianshu.com/p/e2703ee04e47
https://www.jianshu.com/p/a3212b97e1b5
https://www.jianshu.com/p/1a9374e83180
https://www.jianshu.com/p/2f3a463a5174
https://www.jianshu.com/p/a9cba445a9bb
https://www.jianshu.com/p/990dfd6a16f7
https://www.jianshu.com/p/e7cd2e7708ee
https://www.jianshu.com/p/5514dbbe4025
https://www.jianshu.com/p/ef19f9cec60c
https://www.jianshu.com/p/932b5df08253
https://www.jianshu.com/p/5ccfe5f0d4b1
https://www.jianshu.com/p/747f5e4c65a7
https://www.jianshu.com/p/b568abb2f9d1
https://www.jianshu.com/p/ca64970db6cc
https://www.jianshu.com/p/b9c0a81ed1bf
https://www.jianshu.com/p/59d4d6e3451a
https://www.jianshu.com/p/9e2b75b383f3
https://www.jianshu.com/p/9fdf62b99c0f
https://www.jianshu.com/p/3440a416d22c
https://www.jianshu.com/p/64c465b633cf
https://www.jianshu.com/p/d211d596e4e7
https://www.jianshu.com/p/26abe66d6f89
https://www.jianshu.com/p/c0d524f5a999
https://www.jianshu.com/p/983115cfa670
https://www.jianshu.com/p/ede42e45a151
https://www.jianshu.com/p/0e98f355568d
https://www.jianshu.com/p/9e8fad063185
https://www.jianshu.com/p/469d56ef05ba
https://www.jianshu.com/p/ccfade2b7dcd
https://www.jianshu.com/p/23be1fdbab2a
https://www.jianshu.com/p/f10c41c40694
https://www.jianshu.com/p/3bea15eb33e1
https://www.jianshu.com/p/a7d6e53ba894
https://www.jianshu.com/p/9a34afb313db
https://www.jianshu.com/p/7e66661b62c9
https://www.jianshu.com/p/9c4891478841
https://www.jianshu.com/p/0b381e0c54d6
https://www.jianshu.com/p/8071b6711a9a
https://www.jianshu.com/p/22f3559bb506
https://www.jianshu.com/p/fcfa5a096b15
https://www.jianshu.com/p/d04ee8bd5ae1
https://www.jianshu.com/p/279bb8c58932
https://www.jianshu.com/p/f5cafb1bc40c
https://www.jianshu.com/p/24c14a03b07f
https://www.jianshu.com/p/7a83df01f9c4
https://www.jianshu.com/p/0a72c786c0ff
https://www.jianshu.com/p/8a7b18ef1e3c
https://www.jianshu.com/p/f15f6adea8fe
https://www.jianshu.com/p/fc7581a88471
https://www.jianshu.com/p/ee986bbdb2cb
https://www.jianshu.com/p/34aa2840a5bd
https://www.jianshu.com/p/c10ef39d433f
https://www.jianshu.com/p/21c4f0448c06
https://www.jianshu.com/p/59bb474b8c15
https://www.jianshu.com/p/891f21c4c634
https://www.jianshu.com/p/a023b9e1cbbb
https://www.jianshu.com/p/728c12712c1c
https://www.jianshu.com/p/c76edb951209
https://www.jianshu.com/p/4a5f190e5d0a
https://www.jianshu.com/p/170d7bb600ea
https://www.jianshu.com/p/8da37ada9982
https://www.jianshu.com/p/cfde15840554
https://www.jianshu.com/p/20c8a60e0d18
https://www.jianshu.com/p/fab32f4c6368
https://www.jianshu.com/p/ebb82e1c6b93
https://www.jianshu.com/p/fc7e18be49e1
https://www.jianshu.com/p/5abbe1e10e6b
https://www.jianshu.com/p/7d9ff3056395
https://www.jianshu.com/p/5cf51bc4caa9
https://www.jianshu.com/p/c3f2a5bc1805
https://www.jianshu.com/p/e70f14b469c4
https://www.jianshu.com/p/93307a43d72e
https://www.jianshu.com/p/27fffc3222ae
https://www.jianshu.com/p/7cb758b7c246
https://www.jianshu.com/p/709a804d9807
https://www.jianshu.com/p/fe4b9c5a20db
https://www.jianshu.com/p/d38009dc613a
https://www.jianshu.com/p/02e214aee2c6
https://www.jianshu.com/p/da9909d9fe65
https://www.jianshu.com/p/ed2b4beced8b
https://www.jianshu.com/p/0f1f4c49babc
https://www.jianshu.com/p/d5bc7a33fe72
https://www.jianshu.com/p/4a893cd0f001
https://www.jianshu.com/p/4c80a80937b7
https://www.jianshu.com/p/f9b2255f74ae
https://www.jianshu.com/p/62fabfc3f4c6
https://www.jianshu.com/p/8548ddeb99a7
https://www.jianshu.com/p/f52b4b80d22a
https://www.jianshu.com/p/f8b88394918d
https://www.jianshu.com/p/02499824a0d0
https://www.jianshu.com/p/90480fb186a9
https://www.jianshu.com/p/bcff3e865ab4
https://www.jianshu.com/p/b24565625d34
https://www.jianshu.com/p/58c9d3100f78
https://www.jianshu.com/p/af93855580a7
https://www.jianshu.com/p/2c9b63d264fd
https://www.jianshu.com/p/98690b4c6ed7
https://www.jianshu.com/p/ce9fff1a1a6d
https://www.jianshu.com/p/32796f4099bc
https://www.jianshu.com/p/8299e3832125
https://www.jianshu.com/p/61bb49ed6e2c
https://www.jianshu.com/p/224c7bf2cf83
https://www.jianshu.com/p/79e4c5cbb2da
https://www.jianshu.com/p/6e48191b0b1f
https://www.jianshu.com/p/c4d8d4a786a0
https://www.jianshu.com/p/5041350148f5
https://www.jianshu.com/p/3f1b06d735b5
https://www.jianshu.com/p/85640d1854d7
https://www.jianshu.com/p/490474cda5fc
https://www.jianshu.com/p/3add4c5e4565
https://www.jianshu.com/p/48751aa6132d
https://www.jianshu.com/p/80de88004d4b
https://www.jianshu.com/p/30a1d12a83d2
https://www.jianshu.com/p/3cab71c99760
https://www.jianshu.com/p/78869d160fdc
https://www.jianshu.com/p/39c816450034
https://www.jianshu.com/p/70907241c0b3
https://www.jianshu.com/p/a45e661b998e
https://www.jianshu.com/p/ee0f79f180e3
https://www.jianshu.com/p/c29c728ecf1e
https://www.jianshu.com/p/21f34de6883c
https://www.jianshu.com/p/a239d281c476
https://www.jianshu.com/p/58919a09c233
https://www.jianshu.com/p/a2e5741f2a39
https://www.jianshu.com/p/9e1c2a6f276c
https://www.jianshu.com/p/233252433559
https://www.jianshu.com/p/26fcae6d9b27
https://www.jianshu.com/p/4c75419044ea
https://www.jianshu.com/p/0dc8aa8bc0ff
https://www.jianshu.com/p/1b2346c73601
https://www.jianshu.com/p/3ca6b7621cff
https://www.jianshu.com/p/62ef14b80da7
https://www.jianshu.com/p/e8730c9be8ca
https://www.jianshu.com/p/c5eb42796e55
https://www.jianshu.com/p/dbb0c229ea7b
https://www.jianshu.com/p/7f9fb2c94156
https://www.jianshu.com/p/fff599166284
https://www.jianshu.com/p/8a2f7b28521a
https://www.jianshu.com/p/c4df45fa7905
https://www.jianshu.com/p/b98a3a3129c3
https://www.jianshu.com/p/0b400c600833
https://www.jianshu.com/p/25ca04f1e1be
https://www.jianshu.com/p/0d9ba573ed6d
https://www.jianshu.com/p/60f2f4f16718
https://www.jianshu.com/p/662bd8a0ee45
https://www.jianshu.com/p/2476ce517c08
https://www.jianshu.com/p/375eee1367a1
https://www.jianshu.com/p/f8266515c46f
https://www.jianshu.com/p/6b0e7f42a96b
https://www.jianshu.com/p/6d80a04a9e3e
https://www.jianshu.com/p/3135c8921ec5
https://www.jianshu.com/p/cc86b9de795c

0

不错

0

赞赞,学习了

0

分享个网页特效素材网

http://www.sucaihuo.com/js

0

可以不错

0
很不错
0
不错
0
好好
0
挺好的,收益了
0
还不错  支持一下
0
0
受益匪浅,以前只知道把效果做出来就行了,没想到里面还有这么多学问啊!感谢分享!
0
受益匪浅,以前只知道把效果做出来就行了,没想到里面还有这么多学问啊!感谢分享!
0
多谢
0
学习了学习了、
0
不错
0

学习了

0

不错,学习到东西了。

0
受教了……
1 2