JavaScript Tutorial/Document/onkeydown

Материал из Web эксперт
Версия от 08:24, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

document.onkeydown

The onkeydown event handler specifies what should happen when any key is pressed when the Document object is in focus.



<html>
    <head>
    <script language="JavaScript1.2">
    <!--
    document.onkeydown = myKeyDownHandler;
    function myKeyDownHandler(){
      alert("A key down event took place within the document!");
    }
    -->
    </script>
    </head>
    <body>
    press a key within this document.
    </body>
    </html>