同步提交

来源:互联网 发布:淘宝三钻店铺多少钱 编辑:程序博客网 时间:2024/06/06 20:52
$.ajax({
url:url+".json",
type: "post",
data:user,
async:false,
dataType: "jsonp",
success:function(data){
if("0" == data.msg){
//用户不存在可以注册
regusername = 2;
}else {
//用户已经存在不能注册
regusername = 3;
}
}

});
0 0
原创粉丝点击