# 显示隐藏密码

# 效果:

# CodePen:

demo

# 代码:

超简单,就是切换input框的type类型:

function isShow() {
    let input = document.getElementById("inputId"); // input的dom
    if (input.type == "password") {
        input.type = 'text'; // 显示
    } else {
        input.type = 'password'; // 隐藏
    }
}
1
2
3
4
5
6
7
8

# 点个Star支持我一下~

最后更新时间: 8/2/2019, 12:38:18 PM