JavaScript Get Verification Code Countdown example

Source: Internet
Author: User

We often online shopping, in order to verify the customer's body before payment, sometimes need to get the phone to send the verification code, when the click to get the Verification code button will appear in the countdown, as shown in the following figure


Implementation method:

<script src= "./js/jquery-1.8.3.min.js" ></script>
<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= "Resend (" + Wait + ")";
wait--;
settimeout (function () {
Time (O)
},
1000)
}
}
document.getElementById ("Btn"). Onclick=function () {time (this);}
</script>

Note: The parameter var wait=60, for the wait time of 60 seconds, can be set according to their actual situation. When the verification code is not obtained within the wait time, you can click to retrieve it again

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.