chrome console.log显示DOM而不是html

时间:2014-07-06 15:44:59

标签: javascript html google-chrome dom google-chrome-devtools

我刚开始尝试使用chrome开发人员工具。根据chrome官方网站记录,使用console.log的元素应该显示html,而console.dir应该在控制台上显示DOM。但是在我的系统上都显示DOM。即使console.dirxml显示DOM而不是html。这是一个众所周知的问题吗?我该如何改变这种行为?

1 个答案:

答案 0 :(得分:1)

如果您想记录元素的HTML,只需使用console.log(myElement.outerHTML)