Contents:
.on( "keyup" [, eventData ], handler )Returns: jQuery
Description: Bind an event handler to the "keypress" event.
-
version added: 1.7.on( "keyup" [, eventData ], handler )
This page describes the keypress
event. For the deprecated .keypress()
method, see .keypress()
.
Note: as the keypress
event isn't covered by any official specification, the actual behavior encountered when using it may differ across browsers, browser versions, and platforms.
The keypress
event is sent to an element when the browser registers keyboard input. This is similar to the keydown
event, except that modifier and non-printing keys such as Shift, Esc, and delete trigger keydown
events but not keypress
events. Other differences between the two events may arise depending on platform and browser.
A keypress
event handler can be attached to any element, but the event is only sent to the element that has the focus. Focusable elements can vary between browsers, but form controls can always get focus so are reasonable candidates for this event type.
For example, consider the HTML:
1
2
3
4
5
6
7
8
|
|
The event handler can be bound to the input field:
1
2
3
|
|
Now when the insertion point is inside the field, pressing a key displays the log:
Handler for `keypress` called.
To trigger the event manually, use .trigger( "keypress" )
:
1
2
3
|
|
After this code executes, clicks on the Trigger the handler div will also log the message.
If key presses anywhere need to be caught (for example, to implement global shortcut keys on a page), it is useful to attach this behavior to the document
object. Because of event bubbling, all key presses will make their way up the DOM to the document
object unless explicitly stopped.
To determine which character was entered, examine the event
object that is passed to the handler function. While browsers use differing properties to store this information, jQuery normalizes the .which
property so you can reliably use it to retrieve the character code.
Note that keydown
and keyup
provide a code indicating which key is pressed, while keypress
indicates which character was entered. For example, a lowercase "a" will be reported as 65 by keydown
and keyup
, but as 97 by keypress
. An uppercase "A" is reported as 65 by all events. Because of this distinction, when catching special keystrokes such as arrow keys, .keydown()
or .keyup()
is a better choice.
Example:
Show the event object when a key is pressed in the input. Note: This demo relies on a simple $.print() plugin (https://api.jquery.com/resources/events.js) for the event object's output.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
|
Demo:
.trigger( "keyup" )Returns: jQuery
Description: Trigger the "keyup" event on an element.
-
version added: 1.0.trigger( "keyup" )
-
"keyup"Type: stringThe string
"keyup"
.
-
See the description for .on( "keyup", ... )
.