为Javascript打印

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为Javascript打印相关的知识,希望对你有一定的参考价值。

by andrew weaver
  1. function print_r(theObj){
  2. if(theObj.constructor == Array ||
  3. theObj.constructor == Object){
  4. document.write("<ul>")
  5. for(var p in theObj){
  6. if(theObj[p].constructor == Array||
  7. theObj[p].constructor == Object){
  8. document.write("<li>["+p+"] => "+typeof(theObj)+"</li>");
  9. document.write("<ul>")
  10. print_r(theObj[p]);
  11. document.write("</ul>")
  12. } else {
  13. document.write("<li>["+p+"] => "+theObj[p]+"</li>");
  14. }
  15. }
  16. document.write("</ul>")
  17. }
  18. }
  19.  
  20. print_r(prods);

以上是关于为Javascript打印的主要内容,如果未能解决你的问题,请参考以下文章

如何将此 JavaScript 代码片段翻译成 Parenscript?

argparse 代码片段只打印部分日志

JavaScript 代码片段

sublime text 3 添加 javascript 代码片段 ( snippet )

JavaScript单行代码,也就是代码片段

10个JavaScript代码片段,使你更加容易前端开发。