“Cómo hacerlo cuando se presiona JavaScript Do Smoding” Código de respuesta

Agregar evento en Ingrese la tecla KeyPress en JavaScript

const elem = document.getElementById("input");

elem.addEventListener("keypress", (event)=> {
    if (event.keyCode === 13) { // key code of the keybord key
      event.preventDefault();
	 // your code to Run
    }
  });
Zunayed

Haga clic en el botón Cuando presione Intro JavaScript

var input = document.getElementById("myInput");

// Execute a function when the user releases a key on the keyboard
input.addEventListener("keyup", function(event) {
  // Number 13 is the "Enter" key on the keyboard
  if (event.keyCode === 13) {
    // Cancel the default action, if needed
    event.preventDefault();
    // Trigger the button element with a click
    document.getElementById("myBtn").click();
  }
});
Maeron Reyes

Cómo hacerlo cuando se presiona JavaScript Do Smoding

window.addEventListener("keypress", function(event) {
    if (event.code == 'key') {
        // Do Stuff;
    }
});
Handsome Hare

Respuestas similares a “Cómo hacerlo cuando se presiona JavaScript Do Smoding”

Preguntas similares a “Cómo hacerlo cuando se presiona JavaScript Do Smoding”

Más respuestas relacionadas con “Cómo hacerlo cuando se presiona JavaScript Do Smoding” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código