HTML DOM: Which events do not bubble?

前端 未结 5 1706
予麋鹿
予麋鹿 2020-11-28 07:47

Most events bubble in all browsers. However, I know that in Internet Explorer \"submit\" events do not bubble. What are the other events that do not bubble?

5条回答
  •  北海茫月
    2020-11-28 08:27

    Any events specific to one element do not bubble: focus, blur, load, unload, change, reset, scroll, most of the DOM events (DOMFocusIn, DOMFocusOut, DOMNodeRemoved, etc), mouseenter, mouseleave, etc

提交回复
热议问题