zoukankan      html  css  js  c++  java
  • JS实现验证码倒计时效果

    通常做注册页面时会有获取验证码按钮,然后点击后过60秒才能重新获取,比如现在项目中遇到的

    然后点击后的样式,并且数字是递减的,到0时重新回到最初的状态(上图)。

    首先构造HTML结构

    <button class="getCode">获取验证码</button>

    css就略了

    JS实现:

    var wait=60;
            function time(o){
                if (wait==0) {
                    o.removeAttribute("disabled");    
                    o.innerHTML="输入验证码";
                    o.style.backgroundColor="#fe9900";
                    wait=60;
                }else{
                    o.setAttribute("disabled", true);
                    o.innerHTML=wait+"秒后重新获取";
                    o.style.backgroundColor="#8f8b8b";
                    wait--;
                    setTimeout(function(){
                        time(o)
                    },1000)
                }
            }

    最后点击按钮,调用time方法:

    $(".getCode").click(function(){
                time(this);
            });

    至此全部功能全部完毕。

  • 相关阅读:
    hdu1875(最小生成树prime)
    hdu1839(最小生成树)
    poj2739(尺取法+质数筛)
    poj2100(尺取法)
    codeforces-div2-449-B
    gym-101350M
    gym-10135I
    gym-101350H
    gym-101350D
    hdu 5569
  • 原文地址:https://www.cnblogs.com/huangxi/p/4552201.html
Copyright © 2011-2022 走看看