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.
$(document).keypress(function(e) { alert(e.keyCode); if(e.keyCode==27) { hide_menu(); } });
エスケープ キーを除くすべてのキーに対してアラートが表示され、の成功部分がif呼び出されることはありません。なぜこれが起こるのですか?
if