Use JavaScript to write a function similar to PHPprint_r

Source: Internet
Author: User
PHPprint_r functions are very useful and can be used to print the structure and data of arrays and objects. Unfortunately, Ja

PHP print_r functions are very useful and can be used to print the structure and data of arrays and objects. Unfortunately, JavaScript does not provide similar functions in the native. However, we can try to implement this function by ourselves. The following provides some methods and ideas.

Method 1
function print_r(theObj) {    var retStr = '';    if (typeof theObj == 'object') {        retStr += '';        for (var p in theObj) {            if (typeof theObj[p] == 'object') {                retStr += '['+p+'] => ' + typeof(theObj) + '';                retStr += '' + print_r(theObj[p]) + '';            } else {                retStr += '['+p+'] => ' + theObj[p] + '';            }        }        retStr += '';    }    return retStr;}
Method 2
$(document).ready(function(){$('#btn').click(function(){  var jsonStr = $('#jsonData').val();  var json = eval('('+jsonStr+')');  (function(){var print_r = function(o, depth) {  var result = '';  depth || (depth=1);  var indent = new Array(4*depth+1).join(' ');  var indentNext = new Array(4*(depth+1)+1).join(' ');  var indentNextTwo = new Array(4*(depth+2)+1).join(' ');  var tmp = '';  var type = typeof o;  switch(type) {case 'string':case 'number':case 'boolean':case 'undefined':case 'function':  tmp += indent + indentNext + o + "\n";  break;case 'object':default:  for(var key in o) {tmp += indentNextTwo + '[' + key + '] = ';tmp += print_r(o[key], (depth+1));  }  }  result += type + "\n";  result += indentNext + '(' + "\n";  result += tmp;  result += indentNext + ')' + "\n";  return result;};alert(print_r(json));  }(json));});});
Method 3
print_r:function(theObj) {var retStr = '';if (typeof theObj == 'object'||typeof theObj == 'array') {retStr += '';for (var p in theObj) {if (typeof theObj[p] == 'object' || typeof theObj[p] == 'array') {retStr += '['+p+'] => ' + typeof(theObj) + '';retStr += '' + XFUPLOAD.Tools.print_r(theObj[p]) + '';} else {retStr += '['+p+'] => ' + theObj[p] + '';}}retStr += '';}$("body").append(retStr);}

This article is available at http://www.nowamagic.net/librarys/veda/detail/1949.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.