Содержание:
.mouseleave( handler )Возвращает: jQuery
Описание: Устанавливает обработчик выхода курсора из области элемента, либо, запускает это событие.
-
Добавлен в версии: 1.0.mouseleave( handler )
-
handlerA function to execute each time the event is triggered.
-
-
Добавлен в версии: 1.4.3.mouseleave( [eventData ], handler )
-
eventDataТип: AnythingAn object containing data that will be passed to the event handler.
-
handlerA function to execute each time the event is triggered.
-
-
Добавлен в версии: 1.0.mouseleave()
- This signature does not accept any arguments.
This method is a shortcut for .on('mouseleave', handler)
in the first two variations, and .trigger('mouseleave')
in the third.
The mouseleave
JavaScript event is proprietary to Internet Explorer. Because of the event's general utility, jQuery simulates this event so that it can be used regardless of browser. This event is sent to an element when the mouse pointer leaves the element. Any HTML element can receive this event.
For example, consider the HTML:
1
2
3
4
5
6
7
8
9
10
|
|

The event handler can be bound to any element:
1
2
3
|
|
Now when the mouse pointer moves out of the Outer <div>
, the message is appended to <div id="log">
. You can also trigger the event when another element is clicked:
1
2
3
|
|
After this code executes, clicks on Trigger the handler will also append the message.
The mouseleave
event differs from mouseout
in the way it handles event bubbling. If mouseout
were used in this example, then when the mouse pointer moved out of the Inner element, the handler would be triggered. This is usually undesirable behavior. The mouseleave
event, on the other hand, only triggers its handler when the mouse leaves the element it is bound to, not a descendant. So in this example, the handler is triggered when the mouse leaves the Outer element, but not the Inner element.
Дополнительные замечания:
-
As the
.mouseleave()
method is just a shorthand for.on( "mouseleave", handler )
, detaching is possible using.off( "mouseleave" )
.