捕获和冒泡阶段是否到达 event.target 节点?

does the capturing and bubbling phases reaches the event.target node?

According to MDN 现代浏览器 运行 触发事件时的两个不同阶段:

According to WHATWG event.stopPropagation() 阻止事件到达当前对象以外的任何对象。

According to MDN event.stopPropagation() 阻止当前事件在捕获和冒泡阶段进一步传播。

所以我想知道捕获和冒泡阶段到达event.target节点是否正确。

不,捕获和冒泡阶段没有到达event.target节点。

现代浏览器运行 三个不同的阶段,捕获阶段、目标阶段和冒泡阶段。

https://dom.spec.whatwg.org/#dom-event-eventphase

https://github.com/mdn/content/issues/6657