.keypress()【《キー押下》イベントハンドラ設定・実行】
メモ
- 《キー押下》イベントハンドラの設定
- 《キー押下》イベントハンドラの実行
構文
説明 | 構文 | 戻り値 | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
《キー押下》 イベントハンドラ設定 | .keypress( handler ) 1.0 handler:イベントハンドラ
.on( "keypress", handler ) の省略形 | jQuery | ||||||||||
.keypress( [eventData ], handler ) 1.4.3 Anything eventData:イベントデータ handler:イベントハンドラ
.on( "keypress", handler ) の省略形 | jQuery | |||||||||||
《キー押下》 イベントハンドラ実行 | .keypress() 1.0.trigger( "keypress" ) の省略形 | jQuery |
関連
例
<p><input id="inputEvent"></p>
<p><textarea id="output" style="width:200px; height:200px;">【出力】</textarea></p>
<script>
function keyboard(event) {
$output = $("#output");
$output.val($output.val() + "\n[" + event.type + "] (" + event.which + ":0x" + event.which.toString(16) + ")");
}
$("#inputEvent")
.keydown(keyboard)
.keypress(keyboard)
.keyup(keyboard);
</script>