Bienvenido a proyecto online, aquí hallarás la respuesta de lo que estás buscando.
Ejemplo 1: presionar una tecla javascript
The keypress event has been deprecated,
you should look to use beforeinput : https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/beforeinput_event
or keydown : https://developer.mozilla.org/en-US/docs/Web/API/Document/keydown_event
instead.(And don't forget to like answers that help you !)
Ejemplo 2: html onkeypress
<input type="text" onkeypress="myFunction()">
Ejemplo 3: agregar evento de pulsación de tecla de detector de eventos en javascript
let msg =document.getDocumentById('#message');
msg.addEventListener("keydown",(event)=>// handle keydown);
msg.addEventListener("keypress",(event)=>// handle keypress);
msg.addEventListener("keyup",(event)=>// handle keyup);
Ejemplo 4: if keypress javascript
// Create your variable and asssign it to your ID or Class in the document using document.querySelector.let name =document.querySelector('#exampleInputEmail1');// Now use your variable and add an event listener to it plus your keypress, event and styling
name.addEventListener("keypress",(event)=>
name.style.border="3px solid #28a745";);
Comentarios y valoraciones
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)