码迷,mamicode.com
首页 > Web开发 > 详细

jquery 中ajax简单实例,结果返回问题处理

时间:2015-04-02 18:46:56      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

var ajaxUrl = "index.php";
//设置为同步
$.ajaxSetup({
 async: false
});
$.post(ajaxUrl,{name:name_val},function(data){check_idno(data);},"json"); 
function check_idno(){
    //处理动作


--- 正常写法
var ajaxUrl = "index.php?ctl=ajax&act=check_userInfo&gact=idno";
var res=false;//用于ajax接受返回结果( 同部后return 依然无效解决办法)
$.ajax({
url:ajaxUrl,
async:false, //设置同步,同部后return 依然无效
type:"post",
data:"name="+name,
dataType:"json",
success:function(obj){
alert(obj.info);
if(obj.info==2){
if(obj.vo == 1){
alert(‘该身份证号已被认证!‘);
res = false;
}else if(obj.vo == 2){
alert(‘请输入正确的身份证号‘);
res = false;
$("#useridno").focus();
}
else
{
res = true;
}
}
},error:function(er){
alert(er.responseText);
var res = false;
}
});
 
return res; 

jquery 中ajax简单实例,结果返回问题处理

标签:

原文地址:http://www.cnblogs.com/echoecho/p/4387550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!