“Evento KeyPress” Código de respuesta

JS cuando se presiona la tecla

document.addEventListener("keypress", function(event) {
	// do stuff
});
Glamorous Goldfinch

Evento KeyPress

document.addEventListener("keypress", function(e) {
	e = e || window.event;
	// Add scripts here
	e.keyCode; // -> returns the keycode of the key that triggered the event
	e.key.toString(); // -> returns the ASCII character of the key that triggered the event
});
MattDESTROYER

KeyPress 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 !)
Tartaud

html onkeypress

<input type="text" onkeypress="myFunction()">
Batman

KeyPress JavaScript

window.addEventListener("keydown", function(event) {
	if (event.key == 'key') {
		// do thing
	}
});
Handsome Hare

Respuestas similares a “Evento KeyPress”

Preguntas similares a “Evento KeyPress”

Más respuestas relacionadas con “Evento KeyPress” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código