เมื่อปล่อยปุ่มเมาส์เหนือองค์ประกอบ onmouseup ทริกเกอร์เหตุการณ์ คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน onmouseup แอตทริบิวต์ −
ตัวอย่าง
<!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>