jquery 改变变量出现值不同步

时间:2024-10-16 09:04:02

出现问题的代码

var unc = 0;
$.get(
'index.php',
'data=1',
function(res)
{
unc=1;
}
); alert(nuc);

这样的话,不管ajax成功返回与否,全局变量unc都不会变

为什么会出现这情况呢?

答案是:ajax是进行的异步操作

解决办法:

加上下面代码

async:false
$.ajax({
type:'get',
url:'index.php?act=check_email&email=' + $('#email_reg').val(),
async:false,
success:function(response){
if (response.error==0) {
unc = 1;
}
},
dataType:'json'
});

以上方法是ajax的同步调用,只有在获取到了data值并赋值给result以后才会返回result完成该方法的调用。

若设为async:true,则会未等到获取data值就已经返回了result。

转自:http://www.linzl.com/archives/324.html