YUI 删除 javascript 注释

发布于 2024-09-15 18:34:01 字数 186 浏览 7 评论 0原文

我需要从一些 Javascript 代码中删除注释(“//这是一条注释”之类的注释),我正在使用 YUI 压缩器,有一个选项可以做到这一点吗?

感谢


感谢您的回复,我正在尝试合并几个脚本并在使用 YUI 压缩后;我发现如果我压缩然后合并脚本它可以工作,但是如果我合并然后压缩,就会出现问题并且我得到了一个损坏的脚本

I need to remove comments (the "// This is a comment" like comments) from some Javascript code, I'm using YUI compressor, there is an option to do that?

Thanks


Thanks for the response, I'm trying to merge several scripts and after compress with YUI; I've found if I compress and then merge the scripts it works, but if I merge and then compress, something goes wrong and I got a broken script

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

风启觞 2024-09-22 18:34:01

YUI Compressor 默认删除注释。您必须使用特殊的注释格式来保存注释。

/*! This comment will not be removed, so it's a good place to put a copyright */

// this comment will be removed

/* this one too */

YUI Compressor removes comments by default. You have to use a special comment format to keep comments.

/*! This comment will not be removed, so it's a good place to put a copyright */

// this comment will be removed

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