javascript仿php的print_r函数输出json数据
摘要:复制代码代码如下://theOb(json数据)functionprint_r(theObj){varretStr='';if(typeof...
复制代码 代码如下:
//theOb(json数据)
function print_r(theObj) {
var retStr = '';
if (typeof theObj == 'object') {
retStr += '<div>';
for (var p in theObj) {
if (typeof theObj[p] == 'object') {
retStr += '<div><b>['+p+'] => ' + typeof(theObj) + '</b></div>';
retStr += '<div>' + print_r(theObj[p]) + '</div>';
} else {
retStr += '<div>['+p+'] => <b>' + theObj[p] + '</b></div>';
}
}
retStr += '</div>';
}
return retStr;
}
【javascript仿php的print_r函数输出json数据】相关文章:
上一篇:
js调用图片隐藏&显示实现代码