当前位置:网站首页 > 网站建设教程 > HTML教程 > 正文

HTML 控制密码框的可见和隐藏

教程管理员 发布于2023-09-27 22:27 HTML教程 138

简介:

html 中如何控制密码框的隐藏和可见呢?



 




 

js方法:

Js代码  收藏代码
  1. /*** 
  2.  * toggle 密码明文 
  3.  * @constructor 
  4.  */  
  5. function ShowHidePW() {  
  6.   
  7.     if (!pwState) {  
  8.         pwFixer.changePasswordVisiblity(1, "new_password2");  
  9.         pwState = true;  
  10.     } else {  
  11.         pwFixer.changePasswordVisiblity(0, "new_password2");  
  12.         pwState = false;  
  13.     }  
  14. }  

 注意:changePasswordVisiblity的第二个参数是元素的id

changePasswordVisiblity方法如下:
Js代码  收藏代码
  1. changePasswordVisiblity= function (what, id) {  
  2.             what = parseInt(what,10);  
  3.             var theEl = document.getElementById(id);  
  4.   
  5.             if (what === 1) { //show  
  6.                 $(theEl).vendorCss("TextSecurity","none");  
  7.             } else {  
  8.                 $(theEl).vendorCss("TextSecurity","disc");  
  9.             }  
  10.             if(!$.os.webkit) {  
  11.                 if(what === 1)  
  12.                     theEl.type="text";  
  13.                 else  
  14.                     theEl.type="password";  
  15.             }  
  16.             theEl = null;  
  17.         }  

 
 demo地址:http://hbjltv.com/ios_www/www/index.html#user_modify_password_panel

注意:demo必须在手机浏览器中访问


琼ICP备09004296号-12