📅  最后修改于: 2022-03-11 15:04:20.805000             🧑  作者: Mango
const input = document.querySelector('input');
const log = document.getElementById('log');
input.addEventListener('change', updateValue);
function updateValue() {
log.textContent = target.value;
}