JavaScript Reference/Javascript Properties/altLeft

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

"altLeft" Example

    
<html>
<head>
<script language="JavaScript">
    function function1() {
        var m = event.altLeft;
        if (m == false) {
            alert("The Left Alt Key is not pressed");
            document.all.myButton.value = "Click here while pressing the Alt key";
        } else if(m == true) {
            alert("The Alt Key is pressed");
            document.all.myButton.value = "Click here"; 
        }
    }
</script>
</head>
<body>
<input id="myButton" type="button" value="Click here" onClick="function1();">
</body>
</html>



"altLeft" is applied to

+----------------+--------------------------------------------------------------+
| Applied_To     |event                                                         |
+----------------+--------------------------------------------------------------+



"altLeft" Syntax and Note

Note:
Read-only property. 
Whether or not the left ALT key is being held down.
    
Syntax:
    
window.event.altLeft