Jquery show/hide password

前端 未结 7 741
失恋的感觉
失恋的感觉 2021-02-10 17:33

Below Jquery is working fine but How could I shorten this Jquery? I have to show and hide the password for password and confirmed password? https://jsfiddle.net/c5cvLo54/1/

7条回答
  •  死守一世寂寞
    2021-02-10 18:09

    Here is one-of-the ways, how you can shorten your code:

    $(document).ready(function() {
    
      $(".show-password, .hide-password").on('click', function() {
        var passwordId = $(this).parents('li:first').find('input').attr('id');
        if ($(this).hasClass('show-password')) {
          $("#" + passwordId).attr("type", "text");
          $(this).parent().find(".show-password").hide();
          $(this).parent().find(".hide-password").show();
        } else {
          $("#" + passwordId).attr("type", "password");
          $(this).parent().find(".hide-password").hide();
          $(this).parent().find(".show-password").show();
        }
      });
    });
    li {
      list-style: none
    }
    
    .hide-password {
      display: none
    }
    
    
    • Show hide
    • Show hide

提交回复
热议问题