ALT Å°ÀÇ »óÅ°ª¸¦ ºÎ¿ï°ªÀ¸·Î ¹ÝȯÇÑ´Ù.

Àμö
: (¼Ó¼º ºÎ¿ï°ª)
¼Ó¼º°ªÀº ALT Å°°¡ ´­·ÁÀִ°¡¸¦ ³ªÅ¸³»´Â ºÎ¿ï°ªÀÌ´Ù.

false ALT Å°°¡ ´­¸®Áö ¾Ê¾Ò´Ù.
true ALT Å°°¡ ´­·È´Ù.

ÀÌ ¼Ó¼ºÀº ÀбâÀü¿ëÀÌ¸ç µðÆúÆ®°ªÀº ¾ø´Ù.

Àû¿ë
°³Ã¼scriptHTML±Ô°ÝIE
Âü°í
altKey, altLeft, ctrlKey, ctrlLeft

¿ÞÂÊ ALT Key ´­¸² ALT Key ´­¸² ¿À¸¥ÂÊ ALT Key ´­¸²
false false false

¿À¸¥ÂÊ, ¿ÞÂÊ ALT Å°¸¦ ´­·¯º¸¶ó.

<SCRIPT>
var altK=altL=altR=false;
function AltDown() {
  if (event.altKey) altK=true;
  if (event.altLeft) altL=true;
  if (altK&&(!altL)) altR=true;
  showIt();
}
function AltUp() {
  altK=altL=altR=false;
  showIt();
}
function showIt() {
    Alt.innerText=altK;
    LAlt.innerText=altL;
    RAlt.innerText=altR;
}
</SCRIPT>
<BODY onload="document.body.focus()" onkeydown="AltDown();" onkeyup="AltUp();">
<TABLE border=1 width=500 style=text-align:center>
<TR><TD>¿ÞÂÊ  ALT Key ´­¸²</TD><TD>ALT Key ´­¸²</TD><TD>¿À¸¥ÂÊ  ALT Key ´­¸²</TD></TR>
<TR><TD id="LAlt">false</TD><TD id="Alt">false</TD><TD id="RAlt">false</TD></TR>
</TABLE>