在此我推荐两种比较常用的两种对于Js的压缩办法:
1.jsmin
http://www.crockford.com/javascript/jsmin.html
C:\jsmin.exe <C:\before.js>C:\after.js
在cmd中输入上述命令,详细documentation参看网址
2.dojo compressor
https://dojotoolkit.org/reference-guide/1.8/util/shrinksafe/index.html#
java -jar shrinksafe.jar infile.js > outfile.js
在cmd中输入上述实例,详细documentation参看网址
转载于:https://www.cnblogs.com/LiuXianBlog/archive/2013/01/15/2860622.html