我希望使用 console.log 以表格格式显示在 webconsole 中的输出是否可以打印出来。例如,我有两个变量 x 和 y,其值不断变化。我可以在控制台的表格中打印这些变量吗?
问问题
3168 次
2 回答
0
console.table([{a:1, b:2, c:3}, {a:"foo", b:false, c:undefined}]);
console.table([[1,2,3], [2,3,4]]);
于 2016-08-05T04:22:06.973 回答
-1
利用
console.dir(someObject);
确保您的输出是对象。
您还可以在 firebug 网站http://getfirebug.com/logging找到其他一些控制台命令
谷歌浏览器见官方文档
于 2012-05-08T09:27:57.413 回答