“Keypress JavaScript” Ответ

JS, когда нажата клавиша

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

Как смоделировать ключ в JavaScript

window.addEventListener('keydown', (e) => {
  console.log(e)
})

window.dispatchEvent(new KeyboardEvent('keydown', {
  'key': 'a'
}));
//use --> document.addEventListener('keypress', (event)=>{console.log(event)}) <-- copy the output of the key you want
//and place it (as object) at ...ardEvent('keydown', HERE)...
Nutty Narwhal

Как я слушаю Keypress в JavaScript

let b = document.getElementById("body"); //making var for body
b.addEventListener("keydown", (evt) => {//when this happens
	console.log(evt.keyCode); //log keycode
});
Wandering Wasp

событие 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

Keypress JavaScript

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

Ответы похожие на “Keypress JavaScript”

Вопросы похожие на “Keypress JavaScript”

Больше похожих ответов на “Keypress JavaScript” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования