最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當前位置: 首頁 - 科技 - 知識百科 - 正文

JS實現(xiàn)用戶注冊時獲取短信驗證碼和倒計時功能的示例代碼分享

來源:懂視網(wǎng) 責編:小采 時間:2020-11-27 20:28:40
文檔

JS實現(xiàn)用戶注冊時獲取短信驗證碼和倒計時功能的示例代碼分享

JS實現(xiàn)用戶注冊時獲取短信驗證碼和倒計時功能的示例代碼分享:在用戶注冊時,通常需要短信驗證碼,而且為了交互效果,也需要增加倒計時。效果如下:<p class="user-form"> <form action="{{ path('zm_member_register') }}" method="
推薦度:
導(dǎo)讀JS實現(xiàn)用戶注冊時獲取短信驗證碼和倒計時功能的示例代碼分享:在用戶注冊時,通常需要短信驗證碼,而且為了交互效果,也需要增加倒計時。效果如下:<p class="user-form"> <form action="{{ path('zm_member_register') }}" method="
在用戶注冊時,通常需要短信驗證碼,而且為了交互效果,也需要增加倒計時。

效果如下:

201611011003251.png

<p class="user-form">
<form action="{{ path('zm_member_register') }}" method="post">
<p class="form-list">
<label class="register-label">手機號碼</label>
<input class="regphone input-register" type="text" name="phone" placeholder="請輸入手機號碼" />
</p>
<p class="form-list">
<label class="register-label">驗證碼</label>
<input class="input-short" type="text" name="sms_salt" placeholder="請輸短信驗證碼" />
<input class="input-code" id="btn" type="button" value="發(fā)送驗證碼" />
</p>
<input style="margin-top: 60px;" type="submit" class="registerSubmit form-sumbit" value="提交" />
</form>
</p>

這里的驗證碼是通過向后臺這個url({{ path(‘zm_member_get_salt') }}))里面,傳手機號碼和類型(type=1為注冊)這兩個值,后臺接收值成功則返回成功狀態(tài)值。

基于這里,實現(xiàn)驗證碼倒計時,即可以在判斷成功后。調(diào)用封裝了的倒計時函數(shù) time(),注意驗證碼應(yīng)使用type為button的input,此時可以方便地更改其value值,來展示倒計時的時間。

<script type="text/javascript">
//倒計時60秒
var wait=60;
function time(o) {
if (wait == 0) {
o.removeAttribute("disabled");
o.value="獲取動態(tài)碼";
wait = 60;
} else {
o.setAttribute("disabled", true);
o.value="重新發(fā)送(" + wait + ")";
wait--;
setTimeout(function() {
time(o)
}, 1000)
}
}
$('.input-code').click(function() {
var phone = $('.regphone').val();
$.ajax({
type: 'post',
url: "{{ path('zm_member_get_salt') }}",
data: {
phone: phone,
type: 1
},
dataType: 'json',
success: function (result) {
if (result.flag == 1) {
// alert('成功');
time(btn);
} else {
alert(result.content);
}
}
});
});
</script>

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

JS實現(xiàn)用戶注冊時獲取短信驗證碼和倒計時功能的示例代碼分享

JS實現(xiàn)用戶注冊時獲取短信驗證碼和倒計時功能的示例代碼分享:在用戶注冊時,通常需要短信驗證碼,而且為了交互效果,也需要增加倒計時。效果如下:<p class="user-form"> <form action="{{ path('zm_member_register') }}" method="
推薦度:
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top