点击“获取验证码”然后出现一个“倒计时”然后“获取验证码”变灰,jQuery 5

点击“获取验证码”然后出现一个“倒计时”然后“获取验证码”变灰,“倒计时”时间到了,“倒计时”隐藏,“获取验证码”变回原来的样子,这个用jQuery该怎么实现,详细点谢谢... 点击“获取验证码”然后出现一个“倒计时”然后“获取验证码”变灰,“倒计时”时间到了,“倒计时”隐藏,“获取验证码”变回原来的样子,这个用jQuery该怎么实现,详细点谢谢了,定时器那些都有点忘了。 展开
 我来答
旺理财
2015-05-16 · 百度知道合伙人官方认证企业
旺理财
1、AA级以上公募债券理财产品 2、短期理财产品【3天收益12%、1个月7.5%、3个月8.2%、6个月8.8%】 3、应用市场搜索“旺理财”下载APP理财
向TA提问
展开全部
先到官网(http://plugins.jquery.com/cookie/)下载cookie插件,放到相应文件夹,代码如下:

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

<title>Examples</title>

<meta name="description" content="">

<meta name="keywords" content="">

<script src="<a href="http://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js">http://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js</a>" ></script>

<script src="jquery.cookie.js" ></script>

<style type="text/css">

* {margin: 0; padding: 0; font-family: "Microsoft Yahei";}

.captcha-box {width: 360px; height: 34px; margin: 30px; padding: 30px; border: #956E6F 1px dashed; border-radius: 5px; background-color: #FAF2F2;}

#mobile { float: left; width: 180px; height: 32px; border: #e5e5e5 1px solid; line-height: 32px; text-indent: 8px; outline: none;}

#getting {float: left; height: 34px; margin-left: -1px; padding: 0 18px; text-align: center; line-height: 34px; border: #e5e5e5 1px solid; background: linear-gradient(0deg, #f4f2f2 0%,#fbf9f9 100%); cursor: pointer; outline: none;}

</style>

<script>

$(function(){

/*仿刷新:检测是否存在cookie*/

if($.cookie("captcha")){

var count = $.cookie("captcha");

var btn = $('#getting');

btn.val(count+'秒后可重新获取').attr('disabled',true).css('cursor','not-allowed');

var resend = setInterval(function(){

count--;

if (count > 0){

btn.val(count+'秒后可重新获取').attr('disabled',true).css('cursor','not-allowed');

$.cookie("captcha", count, {path: '/', expires: (1/86400)*count});

}else {

clearInterval(resend);

btn.val("获取验证码").removeClass('disabled').removeAttr('disabled style');

}

}, 1000);

}

/*点击改变按钮状态,已经简略掉ajax发送短信验证的代码*/

$('#getting').click(function(){

var btn = $(this);

var count = 60;

var resend = setInterval(function(){

count--;

if (count > 0){

btn.val(count+"秒后可重新获取");

$.cookie("captcha", count, {path: '/', expires: (1/86400)*count});

}else {

clearInterval(resend);

btn.val("获取验证码").removeAttr('disabled style');

}

}, 1000);

btn.attr('disabled',true).css('cursor','not-allowed');

});

});

</script>

</head>

<body>

<div class="captcha-box">

<input type="text" id="mobile" maxlength="11" placeholder="请输入手机号码">

<input type="button" id="getting" value="获取验证码">

</div>

</body>

</html>

参考下
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式