显示隐藏密码框

2022/8/1 6:22:47

本文主要是介绍显示隐藏密码框,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

<head>    
<style>
        .box{
            position: relative;
            width: 300px;
            border-bottom: 1px solid #ccc;
            margin: 100px auto;
        }
        .box input{
            width: 250px;
            height: 28px;
            border:0;
            outline: none;
        }
        .box img{
            position: absolute;
            width:20px;
            top: 8px;
            right:7px;

        }
    </style>
</head>
<body>
    <div class="box">
        <label for="">
            <img src="images/flase.png" alt="" >
        </label>
        <input type="password" name="" id="">
        <script>
            var img =document.querySelector('img')
            var input =document.querySelector('input')
            var flag =0
            // 点击一次falg进行变化才行
            img.onclick =function(){
                if(flag==0){
                input.type=Text
                img.src="images/open.png"
                flag= 1
                }else{
                    input.type='password'
                    img.src='images/flase.png'
                    flag = 0
                }
            }
        </script>

 



这篇关于显示隐藏密码框的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程