Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML에서 요소를 클릭할 때 스크립트를 실행하시겠습니까?


클릭 시 사용 HTML에서 요소를 클릭할 때 스크립트를 실행하는 속성입니다.

예시

다음 코드를 실행하여 onclick을 구현할 수 있습니다. 속성 -

<!DOCTYPE html>
<html>
   <body>
      <button onclick = "display()">Click</button>

      <p id = "test"></p>

      <script>
         function display() {
            document.getElementById("test").innerHTML = "You clicked the button!";
         }
      </script>
   </body>
</html>