乐趣区

vue+elementUi 实现密码显示/隐藏+小图标变化(js一共三行代码,其中一行为了美观)

【效果图】

【html】
// 前后代码【略】
<el-form-item label=” 密码 ” prop=”pwd”>
<el-input v-model=”ruleForm.pwd” :type=”pwdType” placeholder=” 请输入密码 ” @keyup.enter.native=”login”>
<i slot=”suffix” class=”el-icon-view” @click=”showPwd”></i>
</el-input>
</el-form-item>
【js】
showPwd () {
this.pwdType === ‘password’ ? this.pwdType = ” : this.pwdType = ‘password’;
let e = document.getElementsByClassName(‘el-icon-view’)[0];
this.pwdType == ” ? e.setAttribute(‘style’, ‘color: #409EFF’) : e.setAttribute(‘style’, ‘color: #c0c4cc’);
},

退出移动版