优秀的 Javascript 清理工具
我正在寻找一个好的自动化工具javascript 清理器(如定位和修复错误),类似于 w3c 验证器的清理器功能(修复 javascript 错误)。
更新:感谢有用的回复,我找到了解决方案:Closure Linter。
Possible Duplicate:
HTML formatter/tidy/beautifier for JavaScript
I'm looking for a good automated javascript cleaner (as in locates and fixes errors), similar to the w3c validator's cleaner function (that fixes the javascript errors).
Update: Thanks to a helpful responce I found my solution: Closure Linter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试jsbeautifier美化你的代码和jslint 来清理其语法。
Try jsbeautifier to beautify your code and jslint to clean up its syntax.
如果我理解正确的话,您可能对 Google 的 Closure Linter,与 JSLint 一样,验证您的代码和报告问题的同时,也提供了可能性修复它们:
If I understand you correctly, you might be interested in Google's Closure Linter, which, like JSLint, validates your code and reports problems, but also provides the possibility to fix them:
我非常喜欢 http://jsbeautifier.org/ 来清理 Javascript。
马特在评论中提供的答案中也提到了这个网站。
I quite like http://jsbeautifier.org/ for cleaning up Javascript.
This site is also mentioned in the answer provided by Matt in the comments.