鼠标事件处理程序中 'this' 的值

Value of 'this' inside a mouse event handler

我在处理带有一堆嵌套元素的 div 上的 mouseout 事件时遇到了一些困难。我找到了 this answer,这对我有帮助,但给我留下了一个进一步的问题。

建议的答案在事件处理程序中使用 this,据我测试,它有效地指向处理程序最初附加到的元素,而不是它的后代。

我的问题是:在某处记录了吗?我在 MDN 上好像找不到它。

this文件吗?

关于句柄函数:

As a DOM event handler
When a function is used as an event handler, its this is set to the element the event fired from (some browsers do not follow this convention for listeners added dynamically with methods other than addEventListener).