console.log 在IE下只显示[Object Object]

时间:2020-12-04 16:57:57

好吧,,我知道很多人不喜欢用IE,但我还是用了。

今天调试的时候发现console.log()在输出有些object类型的信息的时候会只显示一个[Object Object],至于原因,我也不知道为什么。

后来查了一下google,发现 http://*.com/questions/1956384/how-do-i-dump-javascript-vars-in-ie8 ,没注意这里有个ie8,明显用的不是这个版本。

继续搜,看到 http://msdn.microsoft.com/en-us/library/dn255006(v=vs.85).aspx#inspectable_objects 。Good 上面写着 To display an inspectable JavaScript object, send it to the console using console.dir();就你了。

console.dir();