jquery slim指的是jquery简化瘦身版本,比普通标准版本缺少了ajax和特效等模块,因此文件也比标准版本小:slim版本的压缩大小是23.6kb,而标准版本的大小是30kb。
本教程操作环境:windows7系统、jquery3.3.1版本、dell g3电脑。
jquery3.0之后除了标准版本之外,还推出了一个全新的模式版本,我们可以称之为瘦身的版本,官方命名为“slim”。
slim,百度翻译:细长的; 苗条的,纤细的; 微小的; 无价值的。
区别概述:
slim即简化版,比普通版本缺少ajax和特效等模块。如果你不使用 ajax、效果等功能,就可以选择使用这个廋身版“slim”的 jquery,它的压缩大小是 23.6kb,而标准版本的大小是 30kb。
官方发布地址:http://blog.jquery.com/2017/03/20/jquery-3-2-1-now-available/
说明原文
sometimes you don’t need ajax, or you prefer to use one of the many standalone libraries that focus on ajax requests. and often it is simpler to use a combination of css and class manipulation for all your web animations. along with the regular version of jquery that includes the ajax and effects modules, we’ve released a “slim” version that excludes these modules. the size of jquery is very rarely a load performance concern these days, but the slim build is about 6k gzipped bytes smaller than the regular version – 23.6k vs 30k.
谷歌翻译:
有时你不需要ajax,或者你更喜欢使用专注于ajax请求的独立库中的一个。 对于所有的web动画,通常使用css和类操作的组合更为简单。 除了包含ajax和特效模块的常规jquery版本之外,我们还发布了一个排除这些模块的“超薄”版本。 jquery的大小现在很少是一个负载性能的问题,但是超薄的版本比普通版本小了大约6k个字节(23.6k vs 30k 压缩后)。
【推荐学习:jquery视频教程、web前端入门教程】
以上就是jquery slim是什么的详细内容。