小編給大家分享一下jQuery如何實現(xiàn)倒計時重新發(fā)送短信驗證碼功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

成都創(chuàng)新互聯(lián)專注于臺安企業(yè)網(wǎng)站建設(shè),成都響應式網(wǎng)站建設(shè)公司,商城網(wǎng)站建設(shè)。臺安網(wǎng)站建設(shè)公司,為臺安等地區(qū)提供建站服務(wù)。全流程按需規(guī)劃網(wǎng)站,專業(yè)設(shè)計,全程項目跟蹤,成都創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)
具體如下:
<!DOCTYPE html>
<html>
<head>
<script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
var countdown=60;
function settime(obj) {
if (countdown == 0) {
obj.removeAttribute("disabled");
obj.value="免費獲取驗證碼";
countdown = 60;
return;
} else {
obj.setAttribute("disabled", true);
obj.value="重新發(fā)送(" + countdown + ")";
countdown--;
}
setTimeout(function() {
settime(obj) }
,1000)
}
</script>
<body>
<input type="button" id="btn" value="免費獲取驗證碼" onclick="settime(this)" />
</body>
</html>實踐例子:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>搶占iPhone7專屬預訂名額</title>
<link rel="stylesheet" href="getiphone.css" />
</head>
<body >
<div class="top">
<img src="iponeImg/wenan.png" />
</div>
<h2 class="title"><span></span>上市時間同步發(fā)售<span></span><br />首批新蘋果30個預訂專屬名額</h2>
<form id="activityForm" class="form-horizontal" method="post" action="/wamei/activityController/save.htm">
<label>
<span><img src="iponeImg/yonghu.png" /></span>
<i></i>
<input type="text" class="inline-input" id="name" name="name" placeholder="請輸入您的真實姓名" datatype="*1-20" errormsg="姓名最多20個中英文字符!" nullmsg="請輸入您的真實姓名!" />
</label>
<label>
<span><img src="iponeImg/dianhua.png" /></span>
<i></i>
<input type="text" class="inline-input" id="mobilePhone" name="mobilePhone" placeholder="請輸入您的手機號碼" datatype="*" errormsg="請輸入您的手機號碼!" nullmsg="請輸入您的手機號碼!" />
</label>
<label>
<span><img src="iponeImg/yanzhengma.png" /></span>
<i></i>
<input type="text" id="validateCode" class="inline-input" name="validateCode" placeholder="驗證碼" datatype="*" errormsg="請輸入驗證碼!" nullmsg="請輸入驗證碼!" />
<a id="num" mark="1" >獲取驗證碼</a>
</label>
<label id="get">
<input id="confirm" type="submit" value="提交搶占名額" />
</label>
<label>
<a href="/wamei/pages/activity/details.html" id="activity">查看活動詳情</a>
</label>
</form>
<div class="bottom">
<span></span>
<img src="iponeImg/logo.png" />
<span></span>
</div>
<div id="success">
<div class="successImg">
<a class="close"></a>
<p><img src="iponeImg/chenggong.png" />恭喜提交成功</p>
<p >分享一下,安撫激動的心</p>
</div>
</div>
</body>
</html>
<!-- scripts -->
<script src="/wamei/pages/js/jquery.min.js"></script>
<script src="/wamei/pages/js/jquery.form.js"></script>
<script src="/wamei/pages/js/bootstrap.min.js"></script>
<script src="/wamei/pages/js/Validform_v5.3.2.js"></script>
<script type="text/javascript">
$(function(){
//提交表單
$("#activityForm").Validform({
btnSubmit:"#confirm",
tiptype:function(msg){
if(msg != '' && msg!='通過信息驗證!'){
alert(msg);
}
},
tipSweep:true,
beforeSubmit:function(){
saveForm();
return false;
}
});
});
//只允許在APP內(nèi)打開
function isMobile(){
var u = navigator.userAgent;
var mobileFlag = u.indexOf('type/tfbrowser') > -1;
return mobileFlag;
}
//手機號碼驗證
$("#mobilePhone").blur(function(){
var mobilePhone =$("#mobilePhone").val();
var myreg = /^(((13[0-9]{1})|(14[0-9]{1})|(17[0]{1})|(15[0-3]{1})|(15[5-9]{1})|(18[0-9]{1}))+\d{8})$/;
if(mobilePhone){
if(!myreg.test(mobilePhone)){
alert("請輸入有效的手機號碼!");
$("#mobilePhone").val("");
return ;
}
}
});
//發(fā)送短信驗證碼
$("#num").click(function(){
var mobilePhone =$("#mobilePhone").val();
var url="/wamei/activityController/sendValidCode.htm";
if(!mobilePhone){
alert("請輸入您的手機號碼!");
return ;
}
var mark = $("#num").attr("mark");
if("1"==mark){
settime(this);
$.post(url,{mobilePhone:mobilePhone},function(html){
var data = eval("("+html+")");
if(data && data.statusCode==1){
console.log("send success!");
alert("短信驗證碼已發(fā)送,請查收!");
}else{
alert(data.msg);
}
});
}
});
//提交form表單
function saveForm(){
$("#activityForm").ajaxSubmit({
//data: {'columnStr':columnStr},
type: 'post',
async: false,
success: function($data) {
var data = eval("("+$data+")");
if(data && data.statusCode==1){
$("#success").show();
}else{
alert(data.msg);
$("#mobilePhone").val("");
}
}
});
}
$(".close").click(function(){
$("#success").hide();
window.location.reload();
})
//短信后倒計時
var countdown=60;
function settime(obj) {
if (countdown == 0) {
$(obj).attr("disabled",false);
$(obj).attr("mark","1");
$(obj).html("獲取驗證碼");
countdown = 60;
return;
} else {
$(obj).attr("disabled", true);
$(obj).attr("mark","0");
$(obj).html("重新發(fā)送(" + countdown + ")");
countdown--;
}
setTimeout(function() {
settime(obj) }
,1000)
}
// $("#confirm").click(function(){
// $("#success").show();
// })
</script>以上是“jQuery如何實現(xiàn)倒計時重新發(fā)送短信驗證碼功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
文章題目:jQuery如何實現(xiàn)倒計時重新發(fā)送短信驗證碼功能
當前URL:http://www.chinadenli.net/article44/gjoohe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供手機網(wǎng)站建設(shè)、營銷型網(wǎng)站建設(shè)、面包屑導航、網(wǎng)站營銷、微信小程序、服務(wù)器托管
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)