浏览器事件模型
是否有关于浏览器拥有/公开的各种事件的良好博客/维基/文档? 比如事件触发的顺序、标准事件集等?我尝试用谷歌搜索,但即使经过多次尝试也没有找到好的读物。谢谢。
Is there a good blog/wiki/documentation about various events that browsers have/expose ?
Like the order in which the events are fired, set of standard events etc ? I tried to google, but did not come across a good read even after many attempts. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了W3C 规范(不同的浏览器在不同程度上遵守该规范) ),所有 JavaScript 和 DOM 的标准参考是 MDC,Mozilla Dev Connection(又名 MDN,Mozilla开发者网络)。
对于事件,具体请参阅 DOM 事件参考部分。
有关浏览器兼容性的信息(如果您不想使用 DOM 库,这非常有用[买者自负]),请查看 Quirksmode 的 事件兼容性表。
Aside from the W3C specs (which different browsers comply with to varying degrees), the standard reference for all things JavaScript and DOM is MDC, the Mozilla Dev Connection (aka MDN, the Mozilla Dev Network).
For events, specifically, see the DOM Event Reference section.
For information about browser compatibility (super useful if you don't want to use a DOM library [caveat emptor]), check out Quirksmode's event compatibility tables.