我希望在AJAX中转换我的脚本的一部分,因为它不会像Synchronous JAX那样冻结页面。我想要实现的是在将密码发送到服务器之前验证密码是否正常。如果不是,则密码字段将抖动并显示错误消息。
<script type="text/javascript">
var ok = null;
var lastChanged = "";
$(document).ready(function() {
$.localScroll({duration:800});
<?php if ($wrong_pass): ?>
$("form#password_box").velocity("callout.shake");
<?php endif; ?>
$("[name=pass]").on("keyup change propertychange", onPassChange);
});
</script>
<script type="text/javascript">
function onPassChange(e) {
// get keycode of current keypress event
var code = (e.keyCode || e.which);
// do nothing if it's the enter key
if(code != 13) {
var init_val = $("#password_field").val();
$.ajax({type: "POST", url:"check_password_AJAX", data:{pass:$("#password_field").val()}, dataType:"text", success: function (data) {
if (data && $("#password_field").val() == init_val) {
if (data == "TRUE") {
ok = true;
lastChanged = init_val;
}else {
ok = false;
lastChanged = init_val;
}
}
}});
}
}
</script>
<script type="text/javascript">
function validateForm() {
if (ok && lastChanged == $("#password_field").val()) {
$("#incorrect").velocity("transition.fadeOut");
$("#incorrect").html("");
return true;
}else if (lastChanged != $("#password_field").val()) {
//ajax
var obj = $.ajax({type: "POST", url:"check_password_AJAX", data:{pass:$("#password_field").val()}, dataType:"text", async:false});
// Analyse
if (obj.responseText) {
if (obj.responseText == "TRUE") {
$("#incorrect").velocity("transition.fadeOut");
$("#incorrect").html("");
return true;
}else {
$("#password_container").velocity("callout.shake");
$("#incorrect").html("Mot de passe incorrect");
$("#incorrect").velocity("transition.fadeIn");
$("#password_field").val("");
return false;
}
}
}else {
$("#password_container").velocity("callout.shake");
$("#incorrect").html("Mot de passe incorrect");
$("#incorrect").velocity("transition.fadeIn");
$("#password_field").val("");
return false;
}
}
</script>
<form action="cmd" method="post" class="center" id="password_box" onsubmit="return validateForm()">
<div id="password_container">
<input type="password" name="pass" id="password_field" placeholder="Mot de passe"><br>
</div>
<input type="submit" name="submit" class="button" value="S'autentifier">
</form>
对于每个按键,我去尝试使用AJAX(onPassChange
函数)验证密码,并将结果放在ok
变量中。如果用户在使用AJAX验证之前尝试提交表单,我找到的唯一方法就是使用SJAX。感谢。
答案 0 :(得分:0)
我认为你误解了AJAX的用法。 AJAX用于执行异步HTTP(Ajax)请求。在客户端进行验证(我假设您的格式正确并且不正确的密码)不应该使用AJAX完成。将用户名和密码发送到后端服务器可以使用AJAX完成,因为它是HTTP请求。如果您在用户输入文本时尝试检查正确的密码,我将有兴趣了解该方法适用的用例。
编辑:我快速简单地演示了在客户端上进行密码格式验证。注意onPassChange函数的更改以及在id为passwordInvalid的html中添加元素。如果“格式”是密码https://jsfiddle.net/032mn56t/19/
function onPassChange(e) {
// get keycode of current keypress event
var code = (e.keyCode || e.which);
console.log(code);
// do nothing if it's the enter key
if(code != 13) {
var init_val = $("#password_field").val();
//substitute the following with matching input to a regex meething your password requirements. THis is just for demonstration.
if(init_val !== "format"){
$("#passwordInvalid").show();
}else{
$("#passwordInvalid").hide();
}
}
<form action="cmd" method="post" class="center" id="password_box" onsubmit="return validateForm()">
<div id="password_container">
<input type="password" name="pass" id="password_field" placeholder="Mot de passe"><br>
</div>
<input type="submit" name="submit" class="button" value="S'autentifier">
</form>
<p id="passwordInvalid" style="display:none">
WRONG PASSWORD FORMAT
</p>