码迷,mamicode.com
首页 > Web开发 > 详细

asp 时间倒数后按钮可用

时间:2014-11-25 12:32:48      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   java   

  <asp:Button runat="server" ID="btn"  Text="免费获取验证码" onclick="btn_Click" />

js:

<script type="text/javascript">
       var wait = 6;
       function time() {
           if (wait == 0) {
               document.getElementById("btn").removeAttribute("disabled");
               document.getElementById("btn").value = "免费获取验证码";
               wait = 6;
           } else {
               document.getElementById("btn").setAttribute("disabled", true);
               document.getElementById("btn").value = wait + "秒后可以重新发送";
               wait--;
               setTimeout(function () {
                   time()
               },
            1000)
           }
       }
     
</script>    

后台页面加载时调用js

  protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
             ClientScript.RegisterStartupScript(GetType(), "js", "time()", true);
        }
    }

 

效果图:

bubuko.com,布布扣

asp 时间倒数后按钮可用

标签:style   blog   http   io   ar   color   os   sp   java   

原文地址:http://www.cnblogs.com/smile-wei/p/4120522.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!