ユーザーがユーザー名とパスワードを正しく入力してからhome.htmlにアクセスした場合、mysqlデータベースをチェックインしたいのですが、ユーザーがログインボタンをクリックしたことを検出するjavascriptコードがありますが、チェックイン方法がわかりませんjavascriptを使用したデータベース、phpでそれを行う方法は知っていますが、javascriptからphpを呼び出す方法、またはjsコードで直接行う方法を理解できません。これはいくつかのコードです:
html のフォーム:
<div id="password">
<div class="input username"><input type="text" placeholder="User name" /></div>
<div class="input password"><input type="password" placeholder="Password" /></div>
<button>Log in</button>
<a href="#" class="back">Back</a>
</div>
</div>
次に、Login.js ファイルに次のように記述します。
function forgot() {
//Se ho scritto la password allora fai l'animazione wobble, altrimenti vai in home.html
if($("#password .input.password input").attr("value")!='') {
$.notification(
{
title: "Wrong password",
content: "Just leave the password field empty to log in.",
icon: "!"
}
);
$("#password").removeClass().addClass("animated wobble").delay(1000).queue(function(){
$(this).removeClass();
$(this).clearQueue();
});
$("#password .input.password input").attr("value", "").focus();
} else {
document.location.href = "home.html";
}
}
ログインのために、フィールドが空の場合にのみ検出しますが、mysqlデータベースを検出するにはどうすればよいですか? ユーザーが間違ったユーザー名とパスワードを入力した場合に $notification アラートが発生した場合、誰かが私を助けることができますか?