本文介绍了jQuery是否具有类似于PHP的var_dump的JSON/javascript对象到HTML漂亮的打印功能?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
jQuery是否具有类似于PHP的var_dump的JSON/Javascript对象到HTML漂亮的打印功能?如果是,那是什么?
解决方案
jQuery不(开箱即用).
但是,詹姆斯·帕多西(James Padolsey)创建了我非常喜欢的此prettyPrint . /p>
此外,如果您使用的是Firebug或Web Inspector(或类似工具),则只需在控制台中键入对象,然后按,然后查看该对象的树状转储.要强制执行树视图,请调用console.dir(obj)
Does jQuery have a JSON/Javascript object to HTML pretty print function similar to PHP's var_dump? If yes, what is it?
解决方案
jQuery does not (out of the box).
However, James Padolsey created this prettyPrint which I really like.
Also, if you're using Firebug or Web Inspector (or similar), you can just type the object into the console, press , and see a tree-dump of the object. To force a tree-view, call console.dir(obj)
这篇关于jQuery是否具有类似于PHP的var_dump的JSON/javascript对象到HTML漂亮的打印功能?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!