欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

微信小程序注冊60s倒計時功能 使用JS實現(xiàn)注冊60s倒計時功能

 更新時間:2017年08月16日 15:54:44   作者:Rolan  
這篇文章主要介紹了微信小程序注冊60s倒計時功能,以及使用JS實現(xiàn)注冊60s倒計時功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下

微信小程序+WEB使用JS實現(xiàn)注冊【60s】倒計時功能開發(fā)步驟:

1、效果圖: 

 

2、頁面僅僅利用了JS的相關(guān)功能,包含:wxml、js、wxss 

2.1wxml頁面代碼:

<text>綁定手機</text>
<form bindsubmit="bindMobile">
<view class="form_group">
  <text>手 機:</text>
  <input type="number" placeholder="請輸入手機號" maxlength="11" name="data_phone" value="" auto-focus="true" bindblur="blur_mobile" />
  <button type="button" class="{{is_show?'show':'hide'}}" bindtap="clickVerify">獲取驗證碼</button>
  <button type="button" class="{{is_show?'hide':'show'}}">重新發(fā)送{{last_time}}秒</button>
 </view>

<input type="number" placeholder="請輸入驗證碼" maxlength="6" name="data_verify" value=""/>
<button class="save_btn" form-type="submit">確認(rèn)綁定</button>
</form>

2.2 js頁面代碼:

var countdown = 60;
var settime = function (that) {
 if (countdown == 0) {
 that.setData({
  is_show: true
 })
 countdown = 60;
 return;
 } else {
 that.setData({
  is_show:false,
  last_time:countdown
 })

 countdown--;
 }
 setTimeout(function () {
 settime(that)
 }
 , 1000)
}

Page({
 /**
 * 頁面的初始數(shù)據(jù)
 */
 data: {
 last_time:'',
 is_show:true
 },

 clickVerify:function(){
 var that = this;
 // 將獲取驗證碼按鈕隱藏60s,60s后再次顯示
  that.setData({
  is_show: (!that.data.is_show) //false
  })
  settime(that);
 }


})

2.3 wxss頁面代碼:

/* 發(fā)送驗證碼按鈕隱藏,并展示倒數(shù)60s提示 */
.hide{
 display: none;
}
.show{
 display: block;
} 

3、上面講的是微信小程序的,那么我們一般web端或者移動端的應(yīng)該是什么樣呢?

其實,方法都差不多,這里也貼出來僅供大家參考

<!-- 這段代碼(html)是從腳本之家挪過來的,信譽度應(yīng)該是很高的,大家可以放心使用 -->

<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>

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論