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

HTML의 요소에서 마우스 버튼을 눌렀을 때 스크립트를 실행하시겠습니까?


onmousedown 사용 요소에서 마우스 버튼을 눌렀을 때 스크립트를 실행하기 위한 HTML의 속성

예시

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

<!DOCTYPE html>
<html>
   <body>
      <h3 id = "myid" onmousedown = "mouseDown()" onmouseup = "mouseUp()">
         This is demo heading.
      </h3>
      <p>Click above and then release.</p>
      <script>
         function mouseDown() {
            document.getElementById("myid").style.color = "yellow";
         }
         function mouseUp() {
            document.getElementById("myid").style.color = "blue";
         }
      </script>
   </body>
</html>