继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

js短信倒计时

ajax入门学习视频
关注TA
已关注
手记 266
粉丝 80
获赞 597

         

<!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">获取验证码</button></body><script src="https://cdn.bootcss.com/jquery/1.7.2/jquery.min.js"></script><script>$(function() {    //获取验证码    var getCode = document.getElementById('getCode');    var wait = 60;    function time(btn) {        if (wait === 0) {            btn.removeAttribute("disabled");            btn.innerHTML = "获取验证码";            wait = 60;        } else {            btn.setAttribute("disabled", true);            btn.innerHTML = wait + "秒后重试";            wait--;            setTimeout(function() {                time(btn);            }, 1000);        }    }    getCode.onclick = function() {        time(this);    };})</script></html>


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP