javascript仿php的print_r函数输出json数据
更新时间:2013年09月13日 17:29:09 作者:
输出json数据,php的print_r函数可以轻松实现,下面为大家介绍下javascript也可以模仿print_r函数输出json数据,具体实现如下,感兴趣的朋友可以了解下
复制代码 代码如下:
//theOb(json数据)
function print_r(theObj) {
var retStr = '';
if (typeof theObj == 'object') {
retStr += '<div style="font-family:Tahoma; font-size:7pt;">';
for (var p in theObj) {
if (typeof theObj[p] == 'object') {
retStr += '<div><b>['+p+'] => ' + typeof(theObj) + '</b></div>';
retStr += '<div style="padding-left:25px;">' + print_r(theObj[p]) + '</div>';
} else {
retStr += '<div>['+p+'] => <b>' + theObj[p] + '</b></div>';
}
}
retStr += '</div>';
}
return retStr;
}
相关文章
IE的事件传递-event.cancelBubble示例介绍
关于event.cancelBubble,Bubble就是一个事件可以从子节点向父节点传递,下面有个不错的示例,大家可以感受下2014-01-01
最新评论