欧美一区二区三区老妇人-欧美做爰猛烈大尺度电-99久久夜色精品国产亚洲a-亚洲福利视频一区二区

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

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

主要從事網頁設計、PC網站建設(電腦版網站建設)、wap網站建設(手機版網站建設)、成都響應式網站建設、程序開發(fā)、微網站、微信小程序等,憑借多年來在互聯(lián)網的打拼,我們在互聯(lián)網網站建設行業(yè)積累了豐富的網站制作、網站建設、網絡營銷經驗,集策劃、開發(fā)、設計、營銷、管理等多方位專業(yè)化運作于一體,具備承接不同規(guī)模與類型的建設項目的能力。

1、效果圖: 

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

2、頁面僅僅利用了JS的相關功能,包含: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">確認綁定</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端或者移動端的應該是什么樣呢?

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

<!-- 這段代碼(html)是從創(chuàng)新互聯(lián)挪過來的,信譽度應該是很高的,大家可以放心使用 -->

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

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。

網頁標題:微信小程序注冊60s倒計時功能使用JS實現(xiàn)注冊60s倒計時功能
文章起源:http://www.chinadenli.net/article26/gpiejg.html

成都網站建設公司_創(chuàng)新互聯(lián),為您提供網站導航手機網站建設網站設計公司網站收錄ChatGPT關鍵詞優(yōu)化

廣告

聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

成都定制網站網頁設計