“jQuery показывать пароль” Ответ

Показать пароль на кнопке нажатия jQuery


<div class="signin-form u-password p-relative">
    <span class="view-password"><i class="fas fa-eye"></i></span>
	<input id="pass" class="pass" type="password" placeholder="Enter your password"/>
</div>

$('.view-password').on('click', function () {
  let input = $(this).parent().find(".pass");
  input.attr('type', input.attr('type') === 'password' ? 'text' : 'password');
});
Ashraful Oli

jQuery показывать пароль

 $("#showpaswd").click(function () {
        var x = document.getElementById("cpassword");
        if (x.type === "password") {
            x.type = "text";
        } else {
            x.type = "password";
        }
    });
Nervous Newt

Посмотреть мой пароль jQuery

$('#check').click(function(){
	if(document.getElementById('check').checked) {
    $('#test-input').get(0).type = 'text';
  } else {
      $('#test-input').get(0).type = 'password';
  }
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type='password' id='test-input' /> Show password <input type='checkbox' id='check' />
Clear Civet

Ответы похожие на “jQuery показывать пароль”

Вопросы похожие на “jQuery показывать пароль”

Больше похожих ответов на “jQuery показывать пароль” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования