Hvordan skifte kodeordets synlighed
- Previous page Password verification
- Next page Multi-step form
Brug JavaScript til at skifte kodeordets synlighed.
Kodeord:
Vis kodeord
Skift kodeordets synlighed
Første trin - Tilføj HTML:
<!-- Kodeordfelt --> Kodeord: <input type="password" value="FakePSW" id="myInput"> <!-- En element til at skifte kodeordets synlighed --> <input type="checkbox" onclick="myFunction()">Vis kodeord
Første trin - Tilføj JavaScript:
function myFunction() { var x = document.getElementById("myInput"); hvis (x.type === "password") { x.type = "text"; } else {}} x.type = "password"; } }
- Previous page Password verification
- Next page Multi-step form