jQuery - keydownイベント、keypressイベント、keyupイベント

公開日:2018-12-21 更新日:2019-05-14
[jQuery]

1. 概要

キーが押された時にkeydownイベント、キーが押されている間にkeypressイベント、キーが離された時にkeyupイベントが発生します。
押されたキーは、イベントの引数の e.ctrlKey、e.shiftKey、e.keyCode で取得できます。
event.ctrlKey、event.shiftKey、event.keyCode でも取得できますが、Firefox では動かないため、要注意です。

//キーが押された時
$(セレクタ).on("keydown", function(e) {
	処理;
});

//キーが押されている間
$(セレクタ).on("keypress", function(e) {
	処理;
});

//キーが離された時
$(セレクタ).on("keyup", function(e) {
	処理;
});

2. サンプル

<!DOCTYPE html><html><head><meta charset="UTF-8"><title>jQuery</title><style>body{color:#fff; background-color:#000;}</style></head>
<body>
  <script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>

  <input type="text" value="" /><br /><br />

  <div>Control:<span id="msg1"></span></div>
  <div>Shift  :<span id="msg2"></span></div>
  <div>Key    :<span id="msg3"></span></div>

  <script>

    function showKey(isCtrl, isShift, keyCode) {
      $("#msg1").html(isCtrl);
      $("#msg2").html(isShift);
      $("#msg3").html(keyCode);
    }

    $(":text").on("keydown", function(e) {
      showKey(e.ctrlKey, e.shiftKey, e.keyCode);
    });

    $(":text").on("keypress", function(e) {
      showKey(e.ctrlKey, e.shiftKey, e.keyCode);
    });

    $(":text").on("keyup", function(e) {
      showKey(e.ctrlKey, e.shiftKey, e.keyCode);
    });

  </script>
</body></html>

実行結果:画面