📌  相关文章
📜  javascript代码示例中的输入更改事件

📅  最后修改于: 2022-03-11 15:04:20.805000             🧑  作者: Mango

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

input.addEventListener('change', updateValue);

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