點擊獲取短信驗證碼 倒計時

<input type="button" class="btn_get_code" value="獲取短信驗證碼" id="btn_get_phonecode" onclick="send_code()"> code

//倒計時
  $(function () {
            $('#btn_get_phonecode').click(function () {
                var count = 60;
                var countdown = setInterval(CountDown, 1000);
                function CountDown() {
                    $("#btn_get_phonecode").attr("disabled", true);
                    $("#btn_get_phonecode").val(count + " 秒後從新獲取!");
                    if (count == 0) {
                        $("#btn_get_phonecode").val("從新獲取驗證碼").removeAttr("disabled");
                        clearInterval(countdown);
                    }
                    count--;
     $('.phonecode_tips').show(); 
                }
            })
        }); ip

相關文章
相關標籤/搜索