Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SOと残りのインターネットを検索してきましたが、どこにも明確な答えが見つかりません。aFunction要素(テキストボックスなど)がフォーカスされていないときにキーmが押されて離されたときに、誰かがjavascript関数を実行するにはどうすればよいですか?
aFunction
m
jQueryで
$('body').keypress(function(e){ if(e.which == 109) aFunction(); })
ここにjsFiddleのデモがあります
編集:小文字のmは109です