我正在使用ajax来检查我的数据库中的电子邮件ID。我正在使用keyUp事件来实时检查它。它工作正常,但我的键盘卡住了。请建议
$("#电子邮件&#34)。在(" KEYUP",函数(){ });
$("#email").on("keyup",function(){
// now check if email id is changed
var e= $("#email").val();
if(e!="<?=$user_info[0]['user_email']?>" && e!=""){
$.ajax({
url:"<?=URL?>users/check-user-email",
type:'get',
async:false,
data:{email:e},
success:function(resp){
console.log(resp);
if(resp=="Email exists"){
$("#emailerror").css({'display':'block'});
$("#submit").prop("disabled",true);
}else{
$("#emailerror").css({'display':'none'});
$("#submit").prop("disabled",false);
}
}
});
}
});
&#13;
答案 0 :(得分:1)
您不应该使用async:false,
它对同步调用进行异步调用,这对于ajax实现不是必需的。
在您的情况下,因为您没有任何去抖方法,用于在特定时间过后触发某些事件。超时可用于创建去抖动。如:
var time;
$("#email").on("keyup", function() {
if (time) {
clearTimeout(time); // <----clears the timeout for every stroke but **last**.
}// so if you keyup for "abc" then call for 3rd stroke initialized for the word "abc".
time = setTimeout(function() {
// now check if email id is changed
var e = $("#email").val();
if (e != "<?=$user_info[0]['user_email']?>" && e != "") {
$.ajax({
url: "<?=URL?>users/check-user-email",
type: 'get',
//async: false, // <-------remove it or comment out.
data: {
email: e
},
success: function(resp) {
console.log(resp);
if (resp == "Email exists") {
$("#emailerror").css({
'display': 'block'
});
$("#submit").prop("disabled", true);
} else {
$("#emailerror").css({
'display': 'none'
});
$("#submit").prop("disabled", false);
}
}
});
}
}, 500); // <----you can register for more than 500 ms.
});
答案 1 :(得分:0)
对于每个keyup,调用回调方法,这是它的主要原因。 而不是这个你可以使用debounce,它会在一定的间隔后调用。使用下划线js检查这个链接: http://underscorejs.org/#debounce
var someFunction = function (){
// now check if email id is changed
var e= $("#email").val();
if(e!="<?=$user_info[0]['user_email']?>" && e!=""){
$.ajax({
url:"<?=URL?>users/check-user-email",
type:'get',
async:false,
data:{email:e},
success:function(resp){
console.log(resp);
if(resp=="Email exists"){
$("#emailerror").css({'display':'block'});
$("#submit").prop("disabled",true);
}else{
$("#emailerror").css({'display':'none'});
$("#submit").prop("disabled",false);
}
}
});
}
}
$("#email").on("keyup", _.debounce(someFunction, 1000, true));