xiaogang 4 년 전
부모
커밋
d7ec1ded71
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      public/web/register.html

+ 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/eye.png')
+            $(this).children('img').attr('src', 'images/eye.png')
             $('#password').attr('type', 'text');
         } else {
-            $(this).children('img').attr('src', 'img/biyan.png')
+            $(this).children('img').attr('src', 'images/biyan.png')
             $('#password').attr('type', 'password');
         }
     })