function writeobj(obj){ var description = ; for(var i in obj){ var property=obj[i]; description+=i+ = +property+\n; } alert(description); }
另外当你需要将object对象转换为string字符串。
有下面这个函数就好了,可以将其转化为字符串类型,然后就可以打印出来了,具体代码如下:
function obj2string(o){ var r=[]; if(typeof o==string){ return \+o.replace(/([\'\\\])/g,\\$1).replace(/(\n)/g,\\n).replace(/(\r)/g,\\r).replace(/(\t)/g,\\t)+\; } if(typeof o==object){ if(!o.sort){ for(var i in o){ r.push(i+:+obj2string(o[i])); } if(!!document.all&&!/^\n?function\s*tostring\(\)\s*\{\n?\s*\[native code\]\n?\s*\}\n?\s*$/.test(o.tostring)){ r.push(tostring:+o.tostring.tostring()); } r={+r.join()+}; }else{ for(var i=0;i