Содержание:
.mouseup( handler )Возвращает: jQuery
Описание: Устанавливает обработчик возвращения кнопки мыши в ненажатое состояние, либо, запускает это событие.
-
Добавлен в версии: 1.0.mouseup( handler )
-
handlerA function to execute each time the event is triggered.
-
-
Добавлен в версии: 1.4.3.mouseup( [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.mouseup()
- This signature does not accept any arguments.
This method is a shortcut for .on('mouseup', handler)
in the first variation, and .trigger('mouseup')
in the second.
The mouseup
event is sent to an element when the mouse pointer is over the element, and the mouse button is released. Any HTML element can receive this event.
For example, consider the HTML:
1
2
3
4
5
6
|
|

The event handler can be bound to any <div>
:
1
2
3
|
|
Now if we click on this element, the alert is displayed:
Handler for .mouseup() called.
We can also trigger the event when a different element is clicked:
1
2
3
|
|
After this code executes, clicks on Trigger the handler will also alert the message.
If the user clicks outside an element, drags onto it, and releases the button, this is still counted as a mouseup
event. This sequence of actions is not treated as a button press in most user interfaces, so it is usually better to use the click
event unless we know that the mouseup
event is preferable for a particular situation.
Дополнительные замечания:
-
As the
.mouseup()
method is just a shorthand for.on( "mouseup", handler )
, detaching is possible using.off( "mouseup" )
.