ホームページ > 記事 > ウェブフロントエンド > WeChatアプレットを通じてカウントダウン効果を得る検証コードを実装する方法
この記事は主にWeChatアプレットの認証コードを取得するためのカウントダウン効果を詳しく紹介します。興味のある友人はそれを参照してください。
この記事の例は、WeChatアプレットの実装を共有することです。カウントダウンエフェクトの具体的なコードは以下の通りです
wxml
<button disabled='{{disabled}}' data-id="2" bindtap="getVerificationCode"> {{time}} </button>
js
var interval = null //倒计时函数 Page({ data: { date:'请选择日期', fun_id:2, time: '获取验证码', //倒计时 currentTime:61 }, getCode: function (options){ var that = this; var currentTime = that.data.currentTime interval = setInterval(function () { currentTime--; that.setData({ time: currentTime+'秒' }) if (currentTime <= 0) { clearInterval(interval) that.setData({ time: '重新发送', currentTime:61, disabled: false }) } }, 100) }, getVerificationCode(){ this.getCode(); var that = this that.setData({ disabled:true }) }, })
以上、皆さんのお役に立てれば幸いです。未来のみんなへ。
関連記事:
webpack 4.0.0-beta.0 バージョンの新機能 (詳細なチュートリアル)
vue2.0 コンポーネントで値の受け渡しと通信を実装する方法
vue.js でのページング Clickページコンテンツを変更するためのページ番号
以上がWeChatアプレットを通じてカウントダウン効果を得る検証コードを実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。