JavaScript implementation after clicking the button dimmed to avoid repeated submissions _javascript tips

Source: Internet
Author: User
Registration of the need to send a verification activation account of the mail, in order to avoid multiple messages repeatedly sent, so you can click on the Send, set button will be a period of time to continue to click. The following is a simple example:
Copy Code code as follows:

<title> Click to get the Verification code button after the button dimmed, the countdown after a period of time can be repeated click </title>
<body>
<input type= "button" id= "btn" value= "Free access to authentication code"/>
<script type= "Text/javascript" >
var wait=60;
function Time (o) {
if (wait = = 0) {
O.removeattribute ("Disabled");
O.value= "Free access to verification code";
wait = 60;
} else {
O.setattribute ("Disabled", true);
o.value=wait+ "seconds to Resend";
wait--;
settimeout (function () {
Time (O)
},
1000)
}
}
document.getElementById ("Btn"). Onclick=function () {time (this);}
</script>
</body>
Related Article

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.