密碼(password)的顯示隱藏
阿新 • • 發佈:2018-12-13
<!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>