JavaScript Reference/Javascript Properties/ctrlKey — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 08:22, 26 мая 2010

"ctrlKey" Example

    
<html>
<body>
<input type="button" 
       value="Click this button while pressing either Ctrl key" 
       onClick="alert(event.ctrlKey);"> 
</body>
</html>



"ctrlKey" is applied to

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



"ctrlKey" Possible Values

Possible Values
true 
false.



"ctrlKey" Syntax and Note

Note:
Read-only property. 
Was CTRL key pressed. 
    
Syntax:
    
window.event.ctrlKey