📜  输入事件 - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:50.586000             🧑  作者: Mango

代码示例1
const input = document.querySelector('input');
const log = document.getElementById('values');

input.addEventListener('input', updateValue);

function updateValue(e) {
  log.textContent = e.target.value;
}