當在輸入框中新增值時,就會發生 oninput 事件。您可以嘗試執行以下程式碼來了解如何在 JavaScript 中實作 oninput 事件 -
<!DOCTYPE html> <html> <body> <p>Write below:</p> <input type = "text" id = "newInput" oninput = "inputFunc()"> <p id = "demo"></p> <script> function inputFunc() { var a = document.getElementById("newInput").value; document.write("Typed: " + a); } </script> </body> </html>
以上是在JavaScript中,'oninput'事件的用途是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!