En este artículo, necesitamos Detectar Alt/Opción + otra tecla en el área de texto usando HTML y JavaScript. Detecta ambas teclas, es decir , Alt + h . El evento onkeydown ocurre cuando alguien presiona una tecla (en el teclado).
Sintaxis:
<textarea onkeydown="newScript" >
Ejemplo: El siguiente código ilustra cómo detectar que cuando el usuario presionó las teclas Alt + h en el área de texto. Producirá el mensaje de alerta.
HTML
<!DOCTYPE html> <html> <body> <h2>GeeksForGeeks</h2> <h2> How to detect Alt/Option + another key in textarea? </h2> <textarea onkeydown="myFunction(event);"> </textarea> <script> function myFunction(e) { // It check both altKey + 'A' or 'a' if (e.altKey && e.key === "h") { alert( "GeeksforGeeks says Detection successfully "); } } </script> </body> </html>
Nota:
También podemos usar código ASCII para detectar las claves.
Producción:
- Antes de presionar las teclas Alt + h:
- Después de presionar las teclas Alt + h
Los navegadores compatibles se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA