0
を入力中Javascriptが誰かがここでエラー私はそのが機能していない、しかし、入力中のパスワードの一致を検証しようとしています
は、あなたがする必要があるコード
<!DOCTYPE html>
<html>
<head>
<title>password change </title>
<script>
$(document).ready(function() {
$("#txtConfirmPassword").keyup(checkPasswordMatch);
});
function checkPasswordMatch() {
var password = $("#txtNewPassword").val();
var confirmPassword = $("#txtConfirmPassword").val();
if (password != confirmPassword)
$("#divCheckPasswordMatch").html("Passwords do not match!");
else
$("#divCheckPasswordMatch").html("Passwords match.");
}
</script>
</head>
<body>
<div class="td">
<input type="password" id="txtNewPassword" />
</div>
<div class="td">
<input type="password" id="txtConfirmPassword" />
</div>
<div class="registrationFormAlert" id="divCheckPasswordMatch">
</div>
</body>
</html>
_「その機能していません」_ - どのようにしてですか?エラーメッセージが表示されますか?それは間違っていますか?詳細をお知らせください。 –