溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue驗證碼組件應用實例

發(fā)布時間:2020-08-30 05:43:07 來源:腳本之家 閱讀:130 作者:muzidigbig 欄目:編程語言

代碼如下:

<template> 
  <div class="join_formitem"> 
    <label class="enquiry">驗證碼<span>:</span></label> 
    <div class="captcha"> 
      <input type="text" placeholder="請輸入驗證碼" class="verification_input" v-model="picVerification" /> 
      <input type="button" @click="createdCode" class="verification" v-model="checkCode" /> 
    </div> 
  </div> 
</template> 
<script>
export default {
 data(){
  return{
   code:'',
   checkCode:'',          
   picVerification:''     //..驗證碼圖片
  }
 },
 created(){
  this.createdCode()
 },
 methods: {
  // 圖片驗證碼
  createdCode(){
   // 先清空驗證碼輸入
   this.code = ""
   this.checkCode = ""
   this.picVerification = ""
   // 驗證碼長度
   const codeLength = 4
   // 隨機數(shù)
   const random = new Array(0,1,2,3,4,5,6,7,8,9,'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z')
   for(let i = 0;i < codeLength;i++){
    // 取得隨機數(shù)的索引(0~35)
    let index = Math.floor(Math.random() * 36)
    // 根據(jù)索引取得隨機數(shù)加到code上
    this.code += random[index]
   }
   // 把code值賦給驗證碼
   this.checkCode = this.code
  }
 }
}
</script> 
<style>
.verification_input{
 font-family: 'Exo 2',sans-serif;
 border: 1px solid #fff;
 color: black;
 outline: none;
 border-radius: 12px;
 letter-spacing: 1px;
 font-size: 17px;
 font-weight: normal;
 background-color: rgba(82,56,76,.15);
 padding: 5px 0 5px 10px;
 margin-left: 30px;
 height: 30px;
 margin-top: 25px;
 border: 1px solid #e6e6e6;
}
.verification{
 border-radius: 12px;
 width: 100px;
 letter-spacing: 5px;
 margin-left: 50px;
 height: 40px;
 transform: translate(-15px,0);
}
.captcha{
 height:50px;
 text-align: justify;
}
</style>

vue驗證碼組件應用實例

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。如果你想了解更多相關內(nèi)容請查看下面相關鏈接

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI