JavaScript로 비밀번호 표시 여부를 전환하려면 코드는 다음과 같습니다. −
예시
<!DOCTYPE html> <html> <head> <h1>Password visibility example</h1> Password: <input type="password" value="abcd@1234" id="inputPass" /><br /><br /> <input class="check" type="checkbox" />Show Password <h2>Click on the above checkbox to see your password as text</h2> <script> document.querySelector(".check").addEventListener("click", showPass); function showPass() { var inputPassEle = document.getElementById("inputPass"); if (inputPassEle.type === "password") { inputPassEle.type = "text"; } else { inputPassEle.type = "password"; } } </script> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -
비밀번호 표시 확인란 선택 시 -