--- title: GlobalEventHandlers.onmouseleave slug: Web/API/GlobalEventHandlers/onmouseleave translation_of: Web/API/GlobalEventHandlers/onmouseleave ---
{{domxref("GlobalEventHandlers")}} mixin 中的 onmouseleave
属性是用于处理鼠标移出({{event("mouseleave")}})事件的事件管理器({{event("Event_handlers", "event handler")}})。
mouseleave
事件在定点设备(通常来说指的是鼠标) 移出某个元素时触发。
element.onmouseleave = handlerFunction; var handlerFunction = element.onmouseleave;
handlerFunction
可以是 null
,也可以是一个用以指示如何处理该事件的 JavaScript 函数 。
Specification | Status | Comment |
---|---|---|
{{SpecName('HTML WHATWG','#handler-onmouseleave','onmouseleave')}} | {{Spec2('HTML WHATWG')}} |
{{Compat("api.GlobalEventHandlers.onmouseleave")}}