--- title: event.altKey slug: Web/API/MouseEvent/altKey tags: - DOM - Gecko - Gecko DOM Reference translation_of: Web/API/MouseEvent/altKey translation_of_original: Web/API/event.altKey ---
{{ ApiRef() }}
イベントが発生したときALTキーが押されていたかどうかを示します。
bool = event.altKey
bool
は true
か false
であり、イベントが発生したときに ALT キーが押されていたかどうかを示しています。
<html> <head> <title>altKey example</title> <script type="text/javascript"> function showChar(e){ alert( "Key Pressed: " + String.fromCharCode(e.charCode) + "\n" + "charCode: " + e.charCode + "\n" + "ALT key pressed: " + e.altKey + "\n" ); } </script> </head> <body onkeypress="showChar(event);"> <p> Press any character key, with or without holding down the ALT key.<br /> You can also use the SHIFT key together with the ALT key. </p> </body> </html>
{{ languages( { "en": "en/DOM/event.altKey", "pl": "pl/DOM/event.altKey" } ) }}