“Como simular uma tecla em JavaScript” Respostas de código

javascript simular tecla Press

// Type a character
function typeChar(c) {
  document.dispatchEvent(
    new KeyboardEvent('keydown', {
      keyCode: c.charCodeAt(0),
      which: c.charCodeAt(0),
      key: c
    })
  );
}

// Type a word
function typeWord(w) {
  for (let c of w) {
    typeChar(c);
  }
}

typeWord('hello world');
garzj

Como simular uma tecla em 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

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

Respostas semelhantes a “Como simular uma tecla em JavaScript”

Perguntas semelhantes a “Como simular uma tecla em JavaScript”

Mais respostas relacionadas para “Como simular uma tecla em JavaScript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código