检测网页上的用户输入(击键或输入的事件处理)

我正在创建一个基本的 Chrome 扩展,当用户在网页上的任何位置键入时,它会发送消息提醒。但是,我不确定如何实现这一点,我考虑过使用keyUp和keyDown事件,但只有当事件正在监视特定字段时我才成功,而目标是检测用户可以键入的任何字段上的文本。


let timer,

        timeoutVal = 1000; // time it takes to wait for user to stop typing in ms


const status = document.getElementById('status');

const typer = document.getElementById('typer');


typer.addEventListener('keypress', handleKeyPress);

typer.addEventListener('keyup', handleKeyUp);


// when user is pressing down on keys, clear the timeout

function handleKeyPress(e) {

    window.clearTimeout(timer);

  status.innerHTML = 'Typing...';

}


// when the user has stopped pressing on keys, set the timeout

// if the user presses on keys before the timeout is reached, then this timeout is canceled

function handleKeyUp(e) {

    window.clearTimeout(timer); // prevent errant multiple timeouts from being generated

    timer = window.setTimeout(() => {

    status.innerHTML = 'Done';

  }, timeoutVal);

}

达到预期结果的最佳方法是什么?


请记住,我试图在用户在网页上输入文本或用户单击文本字段内部开始输入时触发此 chrome 扩展。


仅当用户在文本字段中没有文本且文本字段未处于活动状态时,chrome 扩展才应消失(否则,如果文本字段中有文本,则保留扩展)。


眼眸繁星
浏览 102回答 1
1回答

Cats萌萌

一种选择是将事件侦听器添加到 html 元素:document.querySelector('html').addEventListener('keypress', () => {  console.log('asd')});另一种选择是循环遍历用户可以输入的所有字段:document.querySelectorAll('input').forEach(inp => {  inp.addEventListener('keypress', () => {console.log('asd')})});
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript