获取短信验证码 js效果

 var countdown = 60;     //计时,默认为60秒发送一次      //$(".cell_btn") 为发送验证码按钮
    function settime()
    {
        if (countdown == 0)
        {
            //60秒结束就把按钮打开吧。
            $(".cell-btn").css("background-color", "#fff");//改变背景颜色

            $(".cell-btn").attr("disabled", false);//把按钮设置为 启用

            $(".cell-btn").text("获取验证码");//把按钮的文字修改为 “获取验证码”
            countdown = 60;
            return false;
        }
        else
        {
            $(".cell-btn").css("background-color", "#c0c0c0"); 

            $(".cell-btn").attr("disabled", true);
            $(".cell-btn").text("重新发送" + countdown);
            countdown--;
        }

        setTimeout(function () {
            settime();
        }, 1000);
    }