Computer >> Máy Tính >  >> Lập trình >> HTML

Thực thi một tập lệnh khi nút chuột được nhấn xuống trên một phần tử trong HTML?


Sử dụng onmousedown thuộc tính trong HTML để thực thi một tập lệnh khi nút chuột được nhấn xuống trên một phần tử.

Ví dụ

Bạn có thể thử chạy mã sau để triển khai onmousedown thuộc tính -

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