Onmousedown,onmouseup,onclick also applies to a label node element

Source: Internet
Author: User

<! DOCTYPE Html>"Utf-8"/><title> Replace the font background color when the mouse is pressed, and restore the default color when lifted. </title><style>. Xuexi{width:200px;height:120px;background: #abcdef; border:1px solid Green;}</style><script>function DownClick () {Console.log ("onmousedown"); varWoaixuexi=document.getelementbyid ("Woaixuexi"); Woaixuexi.style.background="Red"; } function UpClick () {Console.log ("onmouseup"); varWoaixuexi=document.getelementbyid ("Woaixuexi"); Woaixuexi.style.background="Blue"; } function Reclick () {Console.log ("onclick"); varWoaixuexi = document.getElementById ("Woaixuexi"); Woaixuexi.style.background="Green"; }</script>"Woaixuexi"onmousedown="DownClick ();"onmouseup="UpClick ();"onclick="Reclick ();" class="Xuexi"></div></body>

Code Analysis:

1, when the Onmousedown,onmouseup,onclick is simultaneously acting on an element node, the order of execution is onmousedown,onmouseup,onclick;

2, OnMouseDown: Is the event triggered after the mouse press;

OnMouseUp: Event triggered when the mouse is lifted;

OnClick: Event triggered by mouse click (contains two actions, and two processes are pressed and lifted.) )onclick = onmousedown + onmouseup;

Onmousedown,onmouseup,onclick also applies to a label node element

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.