如果用户正确输入用户名和密码然后进入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 警报,任何人都可以帮助我吗?