Содержание:
.mouseout( handler )Возвращает: jQuery
Описание: Устанавливает обработчик выхода курсора из области элемента, либо, запускает это событие.
-
Добавлен в версии: 1.0.mouseout( handler )
-
handlerA function to execute each time the event is triggered.
-
-
Добавлен в версии: 1.4.3.mouseout( [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.mouseout()
- This signature does not accept any arguments.
This method is a shortcut for .on( "mouseout", handler )
in the first two variation, and .trigger( "mouseout" )
in the third.
The mouseout
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">
. To trigger the event manually, apply .mouseout()
without an argument::
1
2
3
|
|
After this code executes, clicks on Trigger the handler will also append the message.
This event type can cause many headaches due to event bubbling. For instance, when the mouse pointer moves out of the Inner element in this example, a mouseout
event will be sent to that, then trickle up to Outer. This can trigger the bound mouseout
handler at inopportune times. See the discussion for .mouseleave()
for a useful alternative.
Дополнительные замечания:
-
As the
.mouseout()
method is just a shorthand for.on( "mouseout", handler )
, detaching is possible using.off( "mouseout" )
.