>웹 프론트엔드 >HTML 튜토리얼 >JavaScript에서 'oninput' 이벤트의 목적은 무엇입니까?

JavaScript에서 'oninput' 이벤트의 목적은 무엇입니까?

WBOY
WBOY앞으로
2023-08-26 15:17:131201검색

JavaScript에서 oninput 이벤트의 목적은 무엇입니까?

입력 상자에 값이 추가되면 oninput 이벤트가 발생합니다. 다음 코드를 실행하여 JavaScript에서 oninput 이벤트를 구현하는 방법을 알아볼 수 있습니다. -

Example

<!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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제