如何压缩更多jquery文件?

发布于 2024-08-31 18:20:16 字数 71 浏览 5 评论 0原文

有什么办法可以压缩更多的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

往昔成烟 2024-09-07 18:20:16

您还可以查看 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.

欢烬 2024-09-07 18:20:16

用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

以为你会在 2024-09-07 18:20:16

您还可以使用 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

娇俏 2024-09-07 18:20:16

您可以使用不同的压缩器来获得略有不同的结果,并让服务器使用 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.

少女七分熟 2024-09-07 18:20:16

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

若水般的淡然安静女子 2024-09-07 18:20:16

检查您的服务器是否压缩 Javascript 文件(例如使用此工具)。

Check if your server compresses Javascript files (e.g. with this tool).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文