有没有办法在chrome中获取文档和窗口属性

时间:2011-06-10 15:57:17

标签: google-chrome google-chrome-devtools

有没有办法在chrome开发人员工具箱中获取文档和窗口属性?

我在开发人员工具箱的元素选项卡中看不到它。在解决jquery.offset问题时,这非常方便

虽然我们可以在firefox 4 +

中讨论这个问题

由于

2 个答案:

答案 0 :(得分:2)

尝试在控制台中输入内容:

console.dir(window) //just "window" would work too
console.dir(document)

答案 1 :(得分:0)

您实际上只需输入devtools控制台(Windows上的F12或Mac上的Cmd + Alt +):

window // logs the window object
document // logs the document object