直播平臺原始碼,input密碼框顯示與隱藏

zhibo系統開發發表於2023-04-19

直播平臺原始碼,input密碼框顯示與隱藏

一、html部分

    <div style="margin-top: 200px;background: #42b983;width: 200px;height: 100px">
      <input :type="passwordType" v-model="password" placeholder="請輸入賬號"/>
      <img :src="status" alt="" @click="changeStatus()"/>
    </div>


二、js部分

初始化

  export default {
    data() {
      return {
        status:require('../src/assets/visible.png'),
        passwordType:'password',
        password:'',
        }
     }
   }


函式部分

      changeStatus(){
        this.passwordType = this.passwordType==='password'?'text':'password';
        this.status = this.status == require('../src/assets/visible.png')?require('../src/assets/unVisible.png'):require('../src/assets/visible.png');
      },


 以上就是 直播平臺原始碼,input密碼框顯示與隱藏,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2946822/,如需轉載,請註明出處,否則將追究法律責任。

相關文章