“JavaScript -Simulation der Tastendrucke” Code-Antworten

JavaScript -Simulation der Tastendrucke

// 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

So simulieren Sie einen Schlüsselpress in 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

Ähnliche Antworten wie “JavaScript -Simulation der Tastendrucke”

Fragen ähnlich wie “JavaScript -Simulation der Tastendrucke”

Weitere verwandte Antworten zu “JavaScript -Simulation der Tastendrucke” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen