admin管理员组文章数量:1345031
jQuery is preferred a lot these days and one of the reasons or plus point is that it is said to be a very lightweight library. My question is what exactly makes it a lightweigt library? Is it the way the code is written OR is it the event handling mechanism OR has it something to do with the DOM?
Also to add, the performance of any web app which uses jQuery is much better pared to one with normal Javascript (e.g. smoother animation effects).
jQuery is preferred a lot these days and one of the reasons or plus point is that it is said to be a very lightweight library. My question is what exactly makes it a lightweigt library? Is it the way the code is written OR is it the event handling mechanism OR has it something to do with the DOM?
Also to add, the performance of any web app which uses jQuery is much better pared to one with normal Javascript (e.g. smoother animation effects).
Share Improve this question edited Aug 31, 2011 at 8:19 pimvdb 155k80 gold badges311 silver badges356 bronze badges asked Aug 31, 2011 at 7:53 copenndthagencopenndthagen 50.9k105 gold badges313 silver badges490 bronze badges 4- 3 I think it has to do with size. – apscience Commented Aug 31, 2011 at 7:54
-
2
because when minified it only weighs
31KB
– Rafay Commented Aug 31, 2011 at 7:57 - 31KB might not be small for some uses – timc3 Commented Aug 31, 2011 at 7:59
-
1
That's
31KB
minified AND gzipped. Only minified is90KB
. – Kernel James Commented Jan 28, 2013 at 10:58
4 Answers
Reset to default 7The filesize is small when gzipped, and particular pains have been taken to ensure that it's as small as possible (avoiding use of eval when parsing JSON for instance).
It also concentrates on only having useful features, so it doesn't include things like a lightbox plugin or a way to create tabs, it just offers basic building blocks to build plex things.
Size is one thing - jQuery 1.6.2 clocks in at around 31KB - but more importantly, jQuery is very low-level, meaning it doesn't try to do more than most of us need. UI features (which many developers don't need) are moved to a separate plugin, as are templates, advanced animations and effects, etc.
This helps to keep the framework itself very lean and useful to the widest possible group of developers.
It can mean several different things. Some mentioned by others.
But I would like to add the simplicity
.
You can make use of a JQuery function with extremely little code overhead
, just include the js file and you are ready to use it in one line. As opposite to have a lot of config files special initialize and so on.
Well it is light in the fact that it is quite performant, but being lightweight obviously depends on what you are paring it to.
Plenty of developers would argue that it isn't pared to implementing certain behavior in just Javascript.
本文标签: javascriptWhy is jQuery a lightweight libraryStack Overflow
版权声明:本文标题:javascript - Why is jQuery a lightweight library? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743720021a2527409.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论