小編給大家分享一下jQuery如何實(shí)現(xiàn)倒計(jì)時(shí)重新發(fā)送短信驗(yàn)證碼功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
成都創(chuàng)新互聯(lián)專注于臺(tái)安企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè)公司,商城網(wǎng)站建設(shè)。臺(tái)安網(wǎng)站建設(shè)公司,為臺(tái)安等地區(qū)提供建站服務(wù)。全流程按需規(guī)劃網(wǎng)站,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,成都創(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="免費(fèi)獲取驗(yàn)證碼"; 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="免費(fèi)獲取驗(yàn)證碼" onclick="settime(this)" /> </body> </html>
實(shí)踐例子:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>搶占iPhone7專屬預(yù)訂名額</title> <link rel="stylesheet" href="getiphone.css" /> </head> <body > <div class="top"> <img src="iponeImg/wenan.png" /> </div> <h2 class="title"><span></span>上市時(shí)間同步發(fā)售<span></span><br />首批新蘋果30個(gè)預(yù)訂專屬名額</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="請(qǐng)輸入您的真實(shí)姓名" datatype="*1-20" errormsg="姓名最多20個(gè)中英文字符!" nullmsg="請(qǐng)輸入您的真實(shí)姓名!" /> </label> <label> <span><img src="iponeImg/dianhua.png" /></span> <i></i> <input type="text" class="inline-input" id="mobilePhone" name="mobilePhone" placeholder="請(qǐng)輸入您的手機(jī)號(hào)碼" datatype="*" errormsg="請(qǐng)輸入您的手機(jī)號(hào)碼!" nullmsg="請(qǐng)輸入您的手機(jī)號(hào)碼!" /> </label> <label> <span><img src="iponeImg/yanzhengma.png" /></span> <i></i> <input type="text" id="validateCode" class="inline-input" name="validateCode" placeholder="驗(yàn)證碼" datatype="*" errormsg="請(qǐng)輸入驗(yàn)證碼!" nullmsg="請(qǐng)輸入驗(yàn)證碼!" /> <a id="num" mark="1" >獲取驗(yàn)證碼</a> </label> <label id="get"> <input id="confirm" type="submit" value="提交搶占名額" /> </label> <label> <a href="/wamei/pages/activity/details.html" id="activity">查看活動(dòng)詳情</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 >分享一下,安撫激動(dòng)的心</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!='通過信息驗(yàn)證!'){ 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; } //手機(jī)號(hào)碼驗(yàn)證 $("#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("請(qǐng)輸入有效的手機(jī)號(hào)碼!"); $("#mobilePhone").val(""); return ; } } }); //發(fā)送短信驗(yàn)證碼 $("#num").click(function(){ var mobilePhone =$("#mobilePhone").val(); var url="/wamei/activityController/sendValidCode.htm"; if(!mobilePhone){ alert("請(qǐng)輸入您的手機(jī)號(hào)碼!"); 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("短信驗(yàn)證碼已發(fā)送,請(qǐng)查收!"); }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(); }) //短信后倒計(jì)時(shí) var countdown=60; function settime(obj) { if (countdown == 0) { $(obj).attr("disabled",false); $(obj).attr("mark","1"); $(obj).html("獲取驗(yàn)證碼"); 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如何實(shí)現(xiàn)倒計(jì)時(shí)重新發(fā)送短信驗(yàn)證碼功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
文章題目:jQuery如何實(shí)現(xiàn)倒計(jì)時(shí)重新發(fā)送短信驗(yàn)證碼功能
當(dāng)前URL:http://chinadenli.net/article44/gjoohe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供手機(jī)網(wǎng)站建設(shè)、營銷型網(wǎng)站建設(shè)、面包屑導(dǎo)航、網(wǎng)站營銷、微信小程序、服務(wù)器托管
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)