当前位置 : 主页 > 网络编程 > PHP >

点击短信发送计时器

来源:互联网 收集:自由互联 发布时间:2021-06-30
input type="button" id="btn" value="发送短信"script type="text/javascript" src="/jquery/jquery.js" var count_time= 60;//定义规定的时间,60秒后再次发送 function start_timer() { if(count_time == 0) { $('#btn').removeAttr("di
 
<input type="button" id="btn" value="发送短信">
<script type="text/javascript"  src="/jquery/jquery.js">
    var count_time= 60;//定义规定的时间,60秒后再次发送
    function start_timer()
    {
          
        if(count_time == 0)
        {
            $('#btn').removeAttr("disabled");
            $('#btn').val("重新发送");
            count_time= 60;
        }else
        {
            $('#btn').attr("disabled",true);
            $('#btn').val("重新发送("+count_time+")");
            count_time--;
            setTimeout(function(){start_timer();},1000);
        }
  
    }
  
    $('#btn').click(function(){
        start_timer();
    });
</script>

网友评论