La propiedad mouseEvent shiftKey se utiliza para definir si se presiona o no la tecla Mayús. Es un valor booleano. Cuando se presiona la tecla de mayúsculas, al hacer clic con el botón izquierdo del mouse, devuelve verdadero y si no se presiona la tecla de mayúsculas, devuelve falso.
Sintaxis:
event.shiftKey
Valor de retorno: Devuelve un valor booleano que indica si se presiona o no la tecla Mayús.
- verdadero: indica que se presionó la tecla shift.
- falso: indica que la tecla shift no está presionada.
Ejemplo :
<!DOCTYPE html> <html> <head> <title>JavaScript Mouse Event</title> </head> <body style = "text-align:center;"> <h1 style = "color:green;"> GeeksforGeeks </h1> <h2> mouseEvent shiftKey Property </h2> <button onclick="geek (event);">Get Shift key state!</button> <script> function geek (event) { if (event.shiftKey) { alert ("Shift key is pressed."); } else { alert ("Shift key is not pressed."); } } </script> </body> </html>
Salida:
Al hacer clic en el botón (no se presiona la tecla Mayús):
Al hacer clic en el botón (se presiona la tecla Mayús):
Navegadores compatibles: los navegadores compatibles con la propiedad shiftKey se enumeran a continuación:
- safari de manzana
- Google Chrome
- Firefox
- Ópera
- explorador de Internet
Publicación traducida automáticamente
Artículo escrito por Vishal Chaudhary 2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA