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