91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

原生js實現密碼輸入框值的顯示隱藏

發布時間:2020-08-27 01:23:10 來源:腳本之家 閱讀:240 作者:starkfang 欄目:web開發

本文實例為大家分享了js顯示隱藏密碼輸入框值的具體代碼,供大家參考,具體內容如下

直接貼上代碼

<!DOCTYPE html>
<html>
<head>
 <title>password intput demo</title>
</head>
<style type="text/css">
body{
 margin:0px; 
 background-color: white; 
 font-family: 'PT Sans', Helvetica, Arial, sans-serif; 
 text-align: center; 
 color: #A6A6A6; 
}
/*輸入框樣式,去掉背景陰影模仿原生應用的輸入框*/
input{
width: 100%; 
height: 50px; 
border:none; 
padding-left:3px; 
font-size: 18px; 
}
input:focus { 
 outline: none; 
}
/*顯示\隱藏密碼圖片*/
img{
width: 40px;
height: 25px;
position: absolute; 
right: 0px; 
margin: 15px; 
}
/*登錄按鈕*/
button{ 
 width: 200px; 
 height: 50px; 
 margin-top: 25px; 
 background: #1E90FF; 
 border-radius: 10px; 
 border:none;
 font-size: 18px;
 font-weight: 700; 
 color: #fff;
}
button:hover {
background: #79A84B; 
outline: 0;
}
/*輸入框底部半透明橫線*/
.input_block {
 border-bottom: 1px solid rgba(0,0,0,.1);
}
/*container*/
#page_container{
 margin: 50px;
}
</style>

<body>

<div id="page_container">
 <!--密碼輸入框-->
 <div class="input_block">
 <img id="demo_img" onclick="hideShowPsw()" src="visible.png">
 <input type="password" id="demo_input" placeholder="Password"/>
 </div>

 <button onclick="">Login</button>
</div>

<script type="text/javascript">
 // 這里使用最原始的js語法實現,可對應換成jquery語法進行邏輯控制
 var demoImg = document.getElementById("demo_img");
 var demoInput = document.getElementById("demo_input");
 //隱藏text block,顯示password block
 function hideShowPsw(){
 if (demoInput.type == "password") {
 demoInput.type = "text";
 demo_img.src = "invisible.png";
 }else {
 demoInput.type = "password";
 demo_img.src = "visible.png";
 }
 }
</script>

</body>
</html>

附上圖片:

原生js實現密碼輸入框值的顯示隱藏

原生js實現密碼輸入框值的顯示隱藏

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

衡山县| 吴旗县| 嘉峪关市| 宣城市| 海伦市| 晋中市| 财经| 福建省| 达拉特旗| 堆龙德庆县| 鹤庆县| 卢湾区| 富源县| 桓仁| 盱眙县| 仁怀市| 疏附县| 江门市| 安西县| 南和县| 四平市| 马鞍山市| 开封市| 冷水江市| 云浮市| 政和县| 绍兴县| 龙胜| 盐亭县| 醴陵市| 襄垣县| 兴安县| 襄汾县| 华容县| 沧州市| 襄樊市| 万全县| 罗山县| 紫金县| 城口县| 左贡县|