如何压缩更多jquery文件?
有什么办法可以压缩更多的 jquery 基本文件吗? 我拥有的大约是 56K,由于拨号速度(56k),我需要一个更轻的文件。
is there any way to compress more jquery base file?
what i have is about 56K and i need a more light file because of dial-up speed(56k).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您还可以查看 JavaScript CompressorRater 并了解不同的工具如何压缩 jQuery。然而,经验法则是为支持 GZIP 压缩的浏览器启用 GZIP 压缩。
You can also check the The JavaScript CompressorRater and see how different tools will compress jQuery. The rule of thumb however is to enable GZIP compression for browsers that support it.
用JSMin压缩的jquery 1.4接近56K。 Dean edwards 的 packer 通常会提供更好的压缩效果,但在客户端解压缩需要更长的时间。您可以在 jscompress 上比较两者
还没有看到 jquery 在任何地方使用闭包压缩。就我个人而言,我会选择 JSMin 并使用 gzip 压缩。这使其降至约 23K
jquery 1.4 compressed with JSMin is close to 56K. packer by dean edwards generally gives a little better compression but would take longer to decompress on client side. you can compare both at jscompress
haven't seen jquery compressed with closure being used anywhere. Personally I'd go with JSMin and serve with gzip compression. That brings it down to ~23K
您还可以使用 Google 托管的文件,甚至是未压缩的文件。用户可能已将它们加载到浏览器的缓存中,因此根本不会将它们下载到您的网站上。
http://code.google.com/apis/ajaxlibs/documentation/#jquery< /a>
You can also use the ones hosted by Google, even uncompressed. The users probably have them loaded in their browser's cache, so they're not downloaded at all on your site.
http://code.google.com/apis/ajaxlibs/documentation/#jquery
您可以使用不同的压缩器来获得略有不同的结果,并让服务器使用 gzip 来压缩文件。
Google 托管该库,因此您可以使用他们的服务器并希望用户已在缓存中拥有该文件。
然而,在 56k 调制解调器上,库的下载时间仍然至少为三秒。它不是一个轻量级的库,如果你使用它,你就必须接受额外的负载。考虑一下您是否需要它,或者纯 JavaScript 是否是更好的解决方案。
You can use different minifiers to get slightly different results, and let the server use gzip to compress the files.
Google hosts the library, so you can use their server and hope that the users already have the file in the cache.
However, the download time of the library will still be at least three seconds over a 56k modem. It's not a light-weight library, if you use it you have to accept the extra load. Consider if you need it, or if plain Javascript would be a better solution.
http://www.google.ru/search?hl=ru&q=compress+javascript&btnG=%D0%9F%D0%BE%D0 %B8%D1%81%D0%BA+%D0%B2+Google&lr=
压缩js文件的技术有很多。您应该首先下载 jquery 文件的最小版本 - http://code .jquery.com/jquery-1.4.2.min.js。
您还可以考虑减小网站大小< /a>
http://www.google.ru/search?hl=ru&q=compress+javascript&btnG=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA+%D0%B2+Google&lr=
There are a lot of technics to compress js-files. You should start with downloading the min-version of jquery files - http://code.jquery.com/jquery-1.4.2.min.js.
You can also think about reducing your websites size
检查您的服务器是否压缩 Javascript 文件(例如使用此工具)。
Check if your server compresses Javascript files (e.g. with this tool).