本篇文章是对ajax事件的调用顺序进行了详细的分析介绍,需要的朋友参考下
jquery的ajax请求方法:
复制代码 代码如下:
$.ajax({
type: "GET",
dateType:"html",
url: "index.html",
error: function(msg) { alert("error"); },
complete: function(msg) { alert("complete"); },
success: function(msg) { alert("success"); }
});