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.
有什么方法可以获取在 DOM 中触发的事件列表?我不想通过添加断点来跟踪。
我正在寻找类似内部浏览器日志的内容,其中包含为正在加载的页面触发的事件顺序。这应该包括所有事件,甚至是 mouseup、mousedown 之类的事件。
如果您使用的是 chrome,您还可以安装一个名为“Visual Event”的扩展程序,对我来说效果很好,它列出了所有 DOM 事件。
链接到 chrome 网上商店
Firebug 提供了一个“日志事件”选项,显示在一个元素内触发的所有 DOM 事件(可用于 body 元素)。
只需检查 HTML,右键单击一个元素,然后单击 Log Events(在 Firefox 上测试)