javascript 漂亮的 html
是否有一个 javascript 库可以使糟糕的 html 可读?
例如:
<div><span></span></div>
进入
<div>
<span></span>
</div>
Is there a javascript library that can make bad html readable?
For example:
<div><span></span></div>
into
<div>
<span></span>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您在 FireFox 上使用 Firebug,则 HTML 会在 HTML 窗格中很好地布局。
取决于您是否想读取它,或者以可读的形式保存它(Firebug 不会)
If you use Firebug on FireFox, HTML is all laid out nicely in the HTML pane.
Depends if you want to reasd it, or save it in a readable form (which Firebug won't)
如果您只想识别您的代码,请使用您最喜欢的 ide。如果是eclipse,快捷键是ctrl + shift + f
If you just want to ident your code, use your favorite ide. If it is eclipse, the shortcut is something like ctrl + shift + f