xiaogang 4 年之前
父节点
当前提交
92bffa5690
共有 3 个文件被更改,包括 2 次插入2 次删除
  1. 二进制
      public/web/images/biyan.png
  2. 二进制
      public/web/images/check.png
  3. 2 2
      public/web/register.html

二进制
public/web/images/biyan.png


二进制
public/web/images/check.png


+ 2 - 2
public/web/register.html

xqd
@@ -235,10 +235,10 @@
     //眼睛
     $("#btn-password").on("click", function () {
         if ($('#password').attr('type') == 'password') {
-            //$(this).children('img').attr('src', 'img/eyes_open.png')
+            $(this).children('img').attr('src', 'img/eye.png')
             $('#password').attr('type', 'text');
         } else {
-            //$(this).children('img').attr('src', 'img/eyes_close.png')
+            $(this).children('img').attr('src', 'img/biyan.png')
             $('#password').attr('type', 'password');
         }
     })