1,使用alert(object.toSource()) 注:[color=red]经测试,最新版FF支持,IE9不支持[/color]
2,自己编写printObject方法,遍历object属性,然后alert,[color=blue]兼容所有浏览器[/color]
3,使用ECMAScript 第五版中的标准化方法JSON.stringify
参考:
[url]http://stackoverflow.com/questions/1625208/print-content-of-javascript-object[/url]
[url=https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/JSON/stringify]JSON.stringify[/url]
[url=http://www.cnblogs.com/lhb25/archive/2011/01/16/1936669.html]JavaScript版本迷局[/url]
alert(object.toSource())
2,自己编写printObject方法,遍历object属性,然后alert,[color=blue]兼容所有浏览器[/color]
function printObject(o){var out = ''; for (var p in o) { if (!o.hasOwnProperty(p)) out += '(inherited) '; out += p + ': ' + o[p] + '\r\n'; } alert(out);}
3,使用ECMAScript 第五版中的标准化方法JSON.stringify
alert(JSON.stringify(obj));
alert(JSON.stringify(obj, null, 4));
// 具体参数的意义参考下面链接
参考:
[url]http://stackoverflow.com/questions/1625208/print-content-of-javascript-object[/url]
[url=https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/JSON/stringify]JSON.stringify[/url]
[url=http://www.cnblogs.com/lhb25/archive/2011/01/16/1936669.html]JavaScript版本迷局[/url]