/*print the json object
*
*$("selector").print_r_json(json,opts) : return formatted string (and print)
*sprint_r_json : just return the string;
*print_r_json : return the formatted string and print json data
*contribute 明河
*
*auth iorichina
*
*example:
*3 ways to use it
*
*
*/
$.fn.print_r_json = function(json,options){
if(typeof(json)!="object") return false;
var opts = $.extend({},$.fn.print_r_json.defaults,options);
var data = '';
if(opts.if_print)
{
data = $.sprint_r_json(json)
$(this).html('
'+(opts.return_array?'Array':'JSON-DATA')+'
'+data);
}
if(opts.array)
{
return $.json_to_array(json);
}
return data;
};
$.fn.print_r_json.defaults =
{
if_print : false,//if print or just return formatted string
return_array : true //return an Array
};
$.extend({
print_r_json : function(json)
{
if(typeof(json)=="object")
{
var text='
{
';
document.write('
{
');
for(var p in json)
{
if(typeof(json[p])=="object")
{
document.write('
["'+p+'"] => ');
text+='
["'+p+'"] => '+$.print_r_json(json[p])+'
';
document.write('
');
}
else
{
text+='
['+((/^\d+$/).test(p)?p:('"'+p+'"'))+'] => "'+json[p]+'"
';
document.write('
['+p+'] => '+json[p]+'
');
}
}
text+='
}
';
document.write('
}
');
return (テキスト);
}
それ以外
{
document.write(json);
return (json);
}
}、
sprint_r_json : 関数(json)
{
if(typeof(json)=="オブジェクト")
{
var text = '
{
';
for(json の var p)
{
if(typeof(json[p])=="オブジェクト")
{
text = '
["' p '"] => ' $.sprint_r_json(json[p]) '
';
}
それ以外
{
text = '
[' ((/^d $/).test(p)?p:('"' p '"')) '] => "' json[p] '"
';
}
}
text = '
}
';
return (テキスト);
}
それ以外
{
return (json);
}
}、
json_to_array : function(json)
{
if(typeof(json)=="オブジェクト")
{
var text = new Array();
for(json の var p)
{
if(typeof(json[p])=="オブジェクト")
{
text[p] = $.json_to_array(json[p]);
}
それ以外
{
text[p] = json[p];
}
}
return (テキスト);
}
それ以外
{
return (json);
}
}
});