我正在尝试在 JS 中制作一个简单的密码确认器。基本上用户有 2 个输入字段,如果它们匹配,则不会发生任何事情,但如果它们不匹配,则会出现一个警报窗口
这也是我第一天使用 javascript,也是我关于 Stack Overflow 的第一个问题,对于任何错误或不幸,我深表歉意。谢谢
<body>
<form>
Password:<br>
<input type="password" name="password" placeholder="Password">
<br>
Re-enter Password:<br>
<input type="password" name="confirmPassword" placeholder="Confirm password">
<br>
<input type="submit" onclick="ansValidation()" value="Sign Up">
</form>
<br>
<script>
function ansValidation() {
var nameValue = document.getElementById("name")
var passValue = document.getElementById("password")
var confpassValue = document.getElementById("confirmPassword")
if(typeof nameValue != String){
window.alert("Please re-enter your name")
}else if(passValue != confpassValue) {
window.alert("Passwords do not match!")
}
}
</script>
</body>
慕仙森
相关分类