“Agregar evento en Ingrese la tecla KeyPress en JavaScript” 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

tecla JavaScript Presionada Enter

$('.container').on('keydown', 'input', function(e) {
  if (e.keyCode === 13) {
    e.preventDefault();
  	e.stopImmediatePropagation();
    //Do your stuff...
  }
});
Matteoweb

Respuestas similares a “Agregar evento en Ingrese la tecla KeyPress en JavaScript”

Preguntas similares a “Agregar evento en Ingrese la tecla KeyPress en JavaScript”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código