直接通过 `event.target.value` 就可以获取到了哇。 const myInput = document.querySelector("input"); myInput.addEventListener("input", (event) => { document.querySelector("#inputContent").innerText = event.target.value });
阅读量:1
点赞量:0