• 密码(password)的显示隐藏


    <!DOCTYPE html>
    <html>
    
        <head>
            <meta charset="UTF-8">
            <title>密码显示隐藏</title>
        </head>
        <style>
            .pass {
                position: relative;
            }
            
            .pass img {
                position: absolute;
                top: 3px;
                left: 186px;
            }
        </style>
    
        <body>
            <div class="form-group pass">
                <label class="control-label" for="ds_host">密码</label>
                <input class="password form-control" type="password" value="" placeholder="输入您的用户名">
                <img class="passimgs" src="images/xs.png">
            </div>
        </body>
    
    </html>
    <script src="https://cdn.bootcss.com/jquery/1.12.3/jquery.min.js"></script>
    <script>
        var pimg=$(".passimgs");
        pimg.mouseover(function() {
            $(this).attr("src", "images/xianshi.png");    
            $(".password").attr("type", "text");          
        });          
        pimg.mouseout(function() {   
            $(this).attr("src", "images/xs.png");        
            $(".password").attr("type", "password");  
        });
    </script>
  • 相关阅读:
    CopyOnWriteArrayList
    Herriot
    Prefix tree
    hadoop 测试框架
    Hadoop RPC
    OpenCV2马拉松第2圈——读写图片
    LCD深度剖析
    SharePoint 改动passwordWeb Part部署方案
    android小游戏模版—重力感应
    CSS(层叠样式表)基础知识
  • 原文地址:https://www.cnblogs.com/fanting/p/10113659.html
Copyright © 2020-2023  润新知