电光石火-穿越时空电光石火-穿越时空


ajax同步异步返回值

$.temp = function () {
	$.ajax({
		url : SERVERURL + "Info",
		type : 'post',
		data : {
			userDevice : "web",
			sessionId : SESSIONID,
		},
		async: false,
		dataType : 'json',
		success : function(xhr) {
			var data = xhr.data;
			if (xhr.isSuccess == true) {
				if(data == null || data == "") {
				}else {
					temporary = 0;
				}
			}else {
				$.alert("获取失败!",3);
			}
		},
		error : function(msg) {
			$.alert('网络错误',3);
		}
	}); 
	return temporary;
}

ajax返回参数时必须用同步async: false,异步会出现undefined错误

本博客所有文章如无特别注明均为原创。作者:似水的流年
版权所有:《电光石火-穿越时空》 => ajax同步异步返回值
本文地址:http://ilkhome.cn/index.php/archives/84/
欢迎转载!复制或转载请以超链接形式注明,文章为 似水的流年 原创,并注明原文地址 ajax同步异步返回值,谢谢。

评论