jquery 中post 、get的同步问题

来源:互联网 发布:rf流体软件 编辑:程序博客网 时间:2024/06/10 00:35

解决方法1:

在全局设置:

$.ajaxSetup({      async : false  });

  然后再使用post或get方法

$.get("register/RegisterState", {test : 12}, function(data, status) {      if (status == "success") {              data = eval("(" + data + ")");          aDataSet = data;          alert("data is " + aDataSet);      } else {              alert("wrong");           }  });

 解决方法2:

直接使用$.ajax,如

$.ajax({            type : "post",            url : "register/RegisterState",            data : "test=" + test,            async : false,            success : function(data){              data = eval("(" + data + ")");              aDataSet = data;            }        });

 


转载自:http://maidoudao.iteye.com/blog/871090

0 0
原创粉丝点击