ajaxを使用してログインフォームを送信し、資格情報が正しいかどうかを確認しています.正しいユーザー名とパスワードを入力すると正常にログインしますが、間違ったユーザー名/パスワードを入力すると、メッセージを表示せずにページが更新されます. その背後にある理由を特定することはできません。どんな助けでも大歓迎です。よろしくお願いします。
<form action="" method="post" id="login-form">
<div class="login_fields">
<label>Email</label>
<input name="your_email" id="user-name" type="email" class="required textfield" autofocus required>
<label>Password</label>
<input name="your_password" id="password" type="password" class="required textfield" required>
<div class="login_buttons">
<button type="submit" class="contact-send contact-button" >Login</button>
<a class="register-button">Register</a>
</div>
</div>
</form>
<script>
$(document).ready(function()
{
$(".contact-send").click(function()
{
$.ajax({
url: "/index/loginform",
data: $("#login-form").serialize() + "&action=send",
type: "post",
cache: false,
dataType: "html",
success : function(resp)
{
if(resp=="send-1")
{
alert("invalid username/password");
}
},
error : function(error,st,e)
{
console.log(error,st,e);
}
});
});
});
</script>