缩小 JS 导致 JS 不起作用
我正在使用 CodeIgniter 的登山扣,它可以缩小它加载的所有 javascript 文件。好吧,我有大约 10 个文件可以正常工作,但是当缩小时,它们就不行了……我不确定到底是什么不起作用,没有错误,只是某些功能不起作用。缩小 JavaScript 是否有任何特殊原因会导致它无法工作?
I'm using carabiner for CodeIgniter which can minify all the javascript files it loads. Well, I have about 10 files that work fine, then when minified, they don't... I'm not sure exactly what doesn't work, there are no errors, just certain features that don't work. Is there any particular reason why minifying JavaScript would cause it to not work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在尝试最小化 Javascript 代码之前,您可能需要尝试在 Javascript 代码上运行 JSLint 。 JSLint 可能会突出显示一些问题,这可以让您最小化代码而不会出现错误。
或者您可能想尝试另一个“缩小”工具。
以下是我在“A List Apart”上找到的两篇文章,您可能会对 YUI 压缩机感兴趣。
“更好的 JavaScript 压缩”
“JavaScript 缩小第二部分"
You may want to try running JSLint on your Javascript code before you try to minimize it. JSLint might highlight some issues, which could allow you to minimize your code without error.
Or you may want to try another 'minification' tool.
Here are two articles I've found on 'A List Apart,' that may interest you, looking at the YUI Compressor.
"Better JavaScript Minification"
"JavaScript Minification Part II"