为Javascript打印
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为Javascript打印相关的知识,希望对你有一定的参考价值。
by andrew weaver
function print_r(theObj){ if(theObj.constructor == Array || theObj.constructor == Object){ document.write("<ul>") for(var p in theObj){ if(theObj[p].constructor == Array|| theObj[p].constructor == Object){ document.write("<li>["+p+"] => "+typeof(theObj)+"</li>"); document.write("<ul>") print_r(theObj[p]); document.write("</ul>") } else { document.write("<li>["+p+"] => "+theObj[p]+"</li>"); } } document.write("</ul>") } } print_r(prods);
以上是关于为Javascript打印的主要内容,如果未能解决你的问题,请参考以下文章
如何将此 JavaScript 代码片段翻译成 Parenscript?