您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關vue如何實現表單中password輸入的顯示與隱藏功能,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
實現效果:
點擊 “眼睛” 的時候顯示與隱藏
代碼:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <link href="css/bootstrap.min.css" rel="external nofollow" rel="stylesheet"> <script src="js/vue.js"></script> <title>Title</title> <style> #main{ text-align: center; margin-top:60px; } input[type=text],input[type=password]{ width:260px; height:28px; display: inline-block; } span{ margin-left:-30px; cursor: pointer; } input[type=checkbox]{ cursor: pointer; opacity: 0; margin-left:-18px; display: inline-block; } </style> </head> <body> <div id="main"> <input type="text" class="form-control" v-model="msg" v-if="checked"> <input type="password" class="form-control" v-model="msg" v-else> <span class="glyphicon glyphicon-eye-open"></span> <input type="checkbox" v-model="checked"> </div> <script> new Vue({ el:"#main", data:{ msg:"", checked:false }, methods:{ } }); </script> <script src="js/jquery.min.js"></script> <script src="js/bootstrap.min.js"></script> </body> </html>
=====================================
登錄頁面input輸入密碼顯示與隱藏實現:
效果(點擊顯示與隱藏進行切換):
代碼:
<!doctype html> <html> <head> <meta charset="UTF-8"> <title></title> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> <script src="js/vue.js"></script> <script src="js/vue-resource.js"></script> <style> body{ background:white; } .main{ padding-top:50px;width:95%;margin:0 auto; } .account{ border-bottom:1px solid #dfdfdf;padding-top:28px; } .account input{ border:none;font-size:14px;margin-bottom:5px;width:91.5%;height:44px; } .account i{ width:14px; height:14px; line-height:14px; font-size:18px; display:inline-block; color:white; background:#cdcdcd; border-radius:50%; text-align:center; font-style:normal; } .account .psd{ width:81.6%; } .account span{ color:#bfbfbf;float:right;line-height:40px; } </style> </head> <body> <div id="login"> <div class="main"> <div class="account"> <input type="password" placeholder="密碼" class="psd" v-model="psd" v-if="ifDisplay"/> <input type="text" placeholder="密碼" class="psd" v-model="psd" v-else/> <i v-show="psd" @click="clearPassword()">×</i> <span v-show="ifDisplay" @click="ifDisplay=!ifDisplay">隱藏</span> <span v-show="!ifDisplay" @click="ifDisplay=!ifDisplay">顯示</span> </div> </div> </div> <script type="text/javascript"> var vm=new Vue({ el:'#login', data:{ username:'', psd:'', ifDisplay:false, }, methods:{ clearPassword:function(){ this.psd=''; }, } }) </script> </body> </html>
Vue具體輕量級框架、簡單易學、雙向數據綁定、組件化、數據和結構的分離、虛擬DOM、運行速度快等優勢,Vue中頁面使用的是局部刷新,不用每次跳轉頁面都要請求所有數據和dom,可以大大提升訪問速度和用戶體驗。
關于“vue如何實現表單中password輸入的顯示與隱藏功能”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。