问题
Is there a way to hide the JS comments on the resulting page source? The JS is generic...
Thanks!
回答1:
Sure. Just minify your javascript with a tool like JSMin: http://www.crockford.com/javascript/jsmin.html
Or UglifyJS: https://github.com/mishoo/UglifyJS/ Or Google Closure: https://developers.google.com/closure/
They all strip comments and excess whitespace. Some will even change your variable names in crazy ways to save bytes.
Or write your JS in a compile to JS language like coffee script http://coffeescript.org/ which strips out comments at compile time.
来源:https://stackoverflow.com/questions/11664884/how-to-hide-javascript-comments-in-the-resulting-html-page