我希望使用console.log以表格格式显示在webconsole中的输出是否可以打印它。例如,我有两个变量x和y,其值不断变化。我可以在控制台的表格中打印这些变量吗?
答案 0 :(得分:0)
console.table([{a:1, b:2, c:3}, {a:"foo", b:false, c:undefined}]);
console.table([[1,2,3], [2,3,4]]);
答案 1 :(得分:-1)
使用
console.dir(someObject);
确保您的输出是对象。
您还可以在firebug网站http://getfirebug.com/logging
找到其他一些控制台命令对于谷歌浏览器,请参阅官方docs