很多密码框都有个眼睛标记,点击能显示密码。原理就是点击切换password为text等显示

 

 

下面上代码

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <meta charset="utf-8">
 5         <title></title>
 6         <style type="text/css">
 7             .pass{
 8                 width:200px;
 9                 height: 20px;
10             }
11         </style>
12         <script>
13             window.onload=function(){
14                 var btn=document.getElementById("btn");
15                 var pass=document.getElementById("pass")
16                 btn.onmousedown=function(){
17                     pass.type="number"
18                 };
19                 btn.onmouseup=btn.onmouseout=function(){
20                     pass.type="password"
21                 }
22             }
23         </script>
24     </head>
25     <body>
26         <input type="password" name="" id="pass" value="123456" class="pass"/>
27         <input type="button" name="" id="btn" value="点击显示" />
28     </body>
29 </html>

 

相关文章:

  • 2022-12-23
  • 2022-03-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-13
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-19
  • 2021-12-29
  • 2021-12-04
  • 2021-10-14
  • 2021-07-13
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案