ajax同步与异步
异步是AJAX代码运行中的时候其他代码一样可以运行
默认是true: 异步,false: 同步
$.ajax({
type: "post",
url: "path",
cache:false,
async:false,
dataType: ($.browser.msie) ? "text" : "xml",
success: function(object){
}
});
异步是AJAX代码运行中的时候其他代码一样可以运行
默认是true: 异步,false: 同步
$.ajax({
type: "post",
url: "path",
cache:false,
async:false,
dataType: ($.browser.msie) ? "text" : "xml",
success: function(object){
}
});