我正在使用大小为400kb的javascript文件,这是非常全面的格式化。但是我看到文件大小有很多不同,如果它是一行(大多数javascripts)。
所以我想减少它的内存大小,以便加载速度更快。请建议我从该文件中删除空格的任何工具或方法?
答案 0 :(得分:3)
尝试http://jscompress.com/在线工具。
什么是jscompress?
JSCompress.com是一个在线JavaScript压缩器,允许您压缩和缩小您的JavaScript文件。压缩的javascript文件非常适合生产环境,因为它们通常会将文件大小减小30-90%。大多数文件大小减少是通过删除Web浏览器或访问者不需要的注释和额外空格字符来实现的。
我为什么要压缩Javascript?
压缩javascript文件是个好主意有很多原因:
* Quicker download times for your users.
* Reduced bandwidth consumption of your website.
* Reduced number of HTTP requests on your server when combining many javascript files into one compressed file, thus reducing the server load and allowing more visitors to access your website.
* Comments and whitespace are not needed for javascript execution; Removing them will speed up script execution times.
答案 1 :(得分:1)
试试YUI Compressor,这真的很棒。