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

Sự kiện onmouseup trong JavaScript là gì?


Sự kiện onmouseup kích hoạt khi thả nút chuột.

Ví dụ

Bạn có thể thử chạy mã sau để tìm hiểu cách làm việc với onmouseup sự kiện trong JavaScript -

<html>
   <head>
      <script>
         <!--
            function sayHello() {
               alert("Mouse Up")
            }
         //-->
      </script>
   </head>
   <body>
      <p onmouseup = "sayHello()">This is demo text for mouseup event.</p>
   </body>
</html>