onkeydown À̺¥Æ®°¡ ¹Ýº¹µÇ´Â°¡¸¦ ¹ÝȯÇÑ´Ù.
| true | À̺¥Æ®°¡ µÎ¹øÀÌ»ó ¹ß»ýµÈ´Ù. |
| false | À̺¥Æ®°¡ Çѹø¸¸ ¹ß»ýµÈ´Ù. |
ÀÌ ¼Ó¼ºÀº Àбâ/¾²±âÀÌ¸ç µðÆúÆ®°ªÀº ¾ø´Ù.
»ç¿ëÀÚ°¡ ۸¦ ´©¸£°í ÀÖ´Â µ¿¾È¿¡´Â repeat ¼Ó¼ºÀº true¸¦ ¹ÝȯÇÑ´Ù.
| °³Ã¼ | script | HTML | ±Ô°Ý | IE |
|---|
<SCRIPT>
function showAll(){
str='event.type='+event.type+'<BR>';
str+='event.repeat='+event.repeat+'<BR>';
showA.innerHTML=str;
}
</SCRIPT>
<BUTTON onmousedown="showAll()">°á°ú º¸À̱â.</BUTTON>
<DIV id=showA>°á°ú Ç¥½Ãâ</DIV>