首页 > 网站 > WEB开发 > 正文

密码框明文暗文切换

2024-04-27 15:16:19
字体:
来源:转载
供稿:网友
<input type="passWord" id="pw" name="pw" style="width: 200px;">

<input type="checkbox" id="showPass" onclick="aaa();">显示密码

function aaa() {    var passType = document.getElementById('pw').type;    if(passType == "text"){        document.getElementById('pw').type = "password";    }else{        document.getElementById('pw').type = "text";    } }


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表