Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 chrome 开发者工具箱中获取文档和窗口属性?
我在开发人员工具箱的元素选项卡中没有看到它。这在排除 jquery.offset 问题时非常方便
在这期间,我们不妨在 Firefox 4+ 中讨论这个问题
谢谢
尝试在控制台中输入:
console.dir(window) //just "window" would work too console.dir(document)
实际上,您只需在 devtools 控制台中输入(Windows 上的 F12 或 Mac 上的 Cmd+Alt+):
window // logs the window object document // logs the document object