這次帶給大家vue做出驗證碼按鈕倒數計時,的注意事項有哪些,以下就是實戰案例,一起來看一下。
上網搜了一下,也把他們的程式碼試了一下,自己出了很多問題。所以,需要寫一篇基礎入門的文章,避免後面人採坑。
這是依照網路上寫的HTML頁面
<p class="register-pannel" id ="register-pannel"> <p class="register-l" align="center"> <p class="input-group" style="width: 300px;"> <input type="text" class="form-control" placeholder="邮箱/手机号/用户名" style="height: 40px;" /> <span class="glyphicon glyphicon-user form-control-feedback" aria-hidden="true" /> </p> <br /> <p class="input-group" style="width: 300px;"> <input type="text" class="form-control" placeholder="密码" style="height: 40px;" /> <span class="glyphicon glyphicon-lock form-control-feedback" /> </p> <br /> <p class="input-group" style="width: 300px;"> <input type="text" class="form-control" placeholder="手机号" style="height: 40px;" /> <span class="glyphicon glyphicon-phone form-control-feedback" /> </p> <br /> <p class="input-group" style="width: 300px;"> <span class="register-msg-btn" v-show="show" v-on:click="getCode">发送验证码</span> <span class="register-msg-btn" v-show="!show">{{count}} s</span> <input type="text" class="form-control" placeholder="验证码" style="float: right; height: 40px; width: 150px;" /> <span class="glyphicon glyphicon-font form-control-feedback" /> </p> <br /> <span class="btn-register">注册</span> </p>
js寫成
<script> <span style="white-space: pre;"> </span>data(){ <span style="white-space: pre;"> </span>return { <span style="white-space: pre;"> </span>show: true, <span style="white-space: pre;"> </span>count: '', <span style="white-space: pre;"> </span>timer: null, <span style="white-space: pre;"> </span>} <span style="white-space: pre;"> </span>}, <span style="white-space: pre;"> </span>methods:{ <span style="white-space: pre;"> </span>getCode(){ <span style="white-space: pre;"> </span>const TIME_COUNT = 60; <span style="white-space: pre;"> </span>if (!this.timer) { <span style="white-space: pre;"> </span>this.count = TIME_COUNT; <span style="white-space: pre;"> </span>this.show = false; <span style="white-space: pre;"> </span>this.timer = setInterval(() => { <span style="white-space: pre;"> </span>if (this.count > 0 && this.count <= TIME_COUNT) { <span style="white-space: pre;"> </span>this.count--; <span style="white-space: pre;"> </span>} else { <span style="white-space: pre;"> </span>this.show = true; <span style="white-space: pre;"> </span>clearInterval(this.timer); <span style="white-space: pre;"> </span>this.timer = null; <span style="white-space: pre;"> </span>} <span style="white-space: pre;"> </span>}, 1000) <span style="white-space: pre;"> </span>} <span style="white-space: pre;"> </span>} <span style="white-space: pre;"> </span>} </script>
發現瀏覽器一直報錯Uncaught SyntaxError: Unexpected token {
#所以依照官方文件的格式,把js的結構改成
<script> new Vue({ el:'.register-pannel', data:{ show:true, timer:null, count:'' }, methods:{ getCode(){ this.show = false; const TIME_COUNT = 60; if (!this.timer) { this.count = TIME_COUNT; this.show = false; this.timer = setInterval(() => { if (this.count > 0 && this.count <= TIME_COUNT) { this.count--; } else { this.show = true; clearInterval(this.timer); this.timer = null; } }, 1000) } } } }); </script>
於是格式是沒有問題了,但是樣式並沒有生效。變成了另一個樣子。
在網路上搜了很多。
有說是js引用順序的問題。
有說是將js寫進window.onload
的。試了一下,發現都不對。
後來,在官方文件中發現了el屬性:為實例提供掛載元素。值可以是 CSS 選擇符,或實際 HTML 元素,或傳回 HTML 元素的函數。
所以改成
<script> new Vue({ el:'.register-pannel', //注册p的class data:{ show:true, timer:null, count:'' }, methods:{ getCode(){ this.show = false; const TIME_COUNT = 60; if (!this.timer) { this.count = TIME_COUNT; this.show = false; this.timer = setInterval(() => { if (this.count > 0 && this.count <= TIME_COUNT) { this.count--; } else { this.show = true; clearInterval(this.timer); this.timer = null; } }, 1000) } } } }); </script>
效果就出來了。
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#以上是vue做出驗證碼按鈕倒數計時的詳細內容。更多資訊請關注PHP中文網其他相關文章!