码迷,mamicode.com
首页 > 其他好文 > 详细

验证码效果

时间:2017-10-09 16:47:28      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:title   doc   meta   border   charset   ble   size   window   nload   

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<style>
    #getCode {
        width: 9rem;
        height: 3rem;
        line-height: 3rem;
        font-size: 1.2rem;
        background-color: #3a3a3a;
        color: #fff;
        border-radius: 0.8rem;
        border: none;
        text-align: center;
    }

    #getCode[disabled] {
        background-color: #B6B6B6;
    }
</style>

<body>
<button id="getCode" class="disabled">获取验证码</button>
</body>
<script>
    window.onload = function () {

        //获取验证码
        var getCode = document.getElementById(getCode);
        var wait = 60;

        function time(btn) {
            if (wait === 0) {
                btn.disabled=false;
                btn.innerHTML = "获取验证码";
                wait = 60;
            } else {
                btn.disabled=true;
                btn.innerHTML = wait + "秒后重试";
                wait--;
                setTimeout(function() {
                    time(btn);
                }, 1000);
            }
        }
        getCode.onclick = function() {
            time(this);
        };
    }
</script>

</html>

技术分享

 

验证码效果

标签:title   doc   meta   border   charset   ble   size   window   nload   

原文地址:http://www.cnblogs.com/QianBoy/p/7641456.html

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