返回值:jQuerykeyup(handler(eventObject))
Bind an event handler to the "keyup" JavaScript event, or trigger that event on an element.
-
1.0 新增keyup(handler(eventObject))
handler(eventObject) (Function) 每当事件触发时执行的函数。 -
1.4.3 新增keyup([eventData], handler(eventObject))
eventData (Object) 可选参数,将要传递给事件处理函数的数据映射。handler(eventObject) (Function) 每当事件触发时执行的函数。 -
1.0 新增keyup()
This method is a shortcut for .bind('keyup', handler)
in the first variation, and .trigger('keyup')
in the second.
The keyup
event is sent to an element when the user releases a key on the keyboard. It 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 elements can always
get focus so are reasonable candidates for this event type.
For example, consider the HTML:
<form> <input id="target" type="text" value="Hello there" /> </form> <div id="other"> Trigger the handler </div>
The event handler can be bound to the input field:
$('#target').keyup(function() { alert('Handler for .keyup() called.'); });
Now when the insertion point is inside the field and a key is pressed and released, the alert is displayed:
Handler for .keyup() called.
We can trigger the event manually when another element is clicked:
$('#other').click(function() { $('#target').keyup(); });
After this code executes, clicks on Trigger the handler will also alert 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 key was pressed, we can examine the event object that is passed to the handler function. While browsers
use differing attributes to store this information, jQuery normalizes the .which
attribute so we can reliably use it to retrieve the key code. This code corresponds to a key on the keyboard, including codes
for special keys such as arrows. For catching actual text entry, .keypress()
may be a better choice.
示例:
Show the event object for the keyup handler when a key is released in the input.
<!DOCTYPE html>
<html>
<head>
<style>
fieldset { margin-bottom: 1em; }
input { display: block; margin-bottom: .25em; }
#print-output {
width: 100%;
}
.print-output-line {
white-space: pre;
padding: 5px;
font-family: monaco, monospace;
font-size: .7em;
}
</style>
<script src="jquery.min.js"></script>
</head>
<body>
<form>
<fieldset>
<label for="target">Type Something:</label>
<input id="target" type="text" />
</fieldset>
</form>
<button id="other">
Trigger the handler
</button>
<script type="text/javascript" src="/scripts/events.js"></script>
<script>
var xTriggered = 0;
$('#target').keyup(function(event) {
if (event.keyCode == '13') {
event.preventDefault();
}
xTriggered++;
var msg = 'Handler for .keyup() called ' + xTriggered + ' time(s).';
$.print(msg, 'html');
$.print(event);
});
$('#other').click(function() {
$('#target').keyup();
});
</script>
</body>
</html>