Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

การใช้เหตุการณ์ oninput ใน JavaScript คืออะไร?


เมื่อมีการเพิ่มค่าในกล่องอินพุต เหตุการณ์ oninput จะเกิดขึ้น คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อเรียนรู้วิธีใช้งาน oninput เหตุการณ์ใน JavaScript -

ตัวอย่าง

<!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>